Skip to content

Commit

Permalink
Fix debugging format argument
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Aug 15, 2024
1 parent 91567a4 commit e87ebd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fts-backend-flatcurve.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ fts_backend_flatcurve_update_build_more(struct fts_backend_update_context *_ctx,
add_str("mailbox", str_c(ctx->backend->boxname))->
add_int("uid", ctx->uid)->
add_int("orig_size", size)->event(),
"Truncated token uid=%d orig_size=%d", ctx->uid, size);
"Truncated token uid=%d orig_size=%ld", ctx->uid, size);

switch (ctx->type) {
case FTS_BACKEND_BUILD_KEY_HDR:
Expand Down

0 comments on commit e87ebd4

Please sign in to comment.