Navigation Menu

Skip to content

Commit

Permalink
windows: suppress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 17, 2015
1 parent a898ab6 commit 420310c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/conf.c
Expand Up @@ -54,7 +54,7 @@ grn_conf_set(grn_ctx *ctx,
}
if (value_size > GRN_CONF_MAX_VALUE_SIZE) {
ERR(GRN_INVALID_ARGUMENT,
"[conf][set] too large value: max=<%lu>: <%d>",
"[conf][set] too large value: max=<%" GRN_FMT_SIZE ">: <%d>",
GRN_CONF_MAX_VALUE_SIZE, value_size);
GRN_API_RETURN(ctx->rc);
}
Expand Down

0 comments on commit 420310c

Please sign in to comment.