Skip to content

Commit

Permalink
UTIL: use proper specifier for 'DEBUG_CHAIN_ID_FMT_*'
Browse files Browse the repository at this point in the history
Resolves: SSSD#6790
  • Loading branch information
alexey-tikhonov committed Nov 13, 2023
1 parent a3ea758 commit 906473a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ void sss_log(int priority, const char *format, ...) SSS_ATTRIBUTE_PRINTF(2, 3);
void sss_log_ext(int priority, int facility, const char *format, ...) SSS_ATTRIBUTE_PRINTF(3, 4);

/* from server.c */
#define DEBUG_CHAIN_ID_FMT_RID "[RID#%lu] %s"
#define DEBUG_CHAIN_ID_FMT_CID "[CID#%lu] %s"
#define DEBUG_CHAIN_ID_FMT_RID "[RID#%"PRIu64"] %s"
#define DEBUG_CHAIN_ID_FMT_CID "[CID#%"PRIu64"] %s"

struct main_context {
struct tevent_context *event_ctx;
Expand Down

0 comments on commit 906473a

Please sign in to comment.