util: fix warning about format string for integer

pull/4941/head
Philippe Antoine 4 years ago committed by Jason Ish
parent dc7a9d2b46
commit 6b735a2e57

@ -337,7 +337,7 @@ THashTableContext *THashInit(const char *cnf_prefix, size_t data_size,
void THashConsolidateMemcap(THashTableContext *ctx)
{
ctx->config.memcap = MAX(SC_ATOMIC_GET(ctx->memuse), THASH_DEFAULT_MEMCAP);
SCLogDebug("memcap after load set to: %lu", ctx->config.memcap);
SCLogDebug("memcap after load set to: %" PRIu64, ctx->config.memcap);
}
/** \brief shutdown the flow engine

Loading…
Cancel
Save