We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667e50e commit abcf3a4Copy full SHA for abcf3a4
src/flb_reload.c
@@ -407,7 +407,9 @@ int flb_reload(flb_ctx_t *ctx, struct flb_cf *cf_opts)
407
return FLB_RELOAD_HALTED;
408
}
409
410
- flb_info("reloading instance pid=%lu tid=%p", (long unsigned) getpid(), pthread_self());
+ flb_info("reloading instance pid=%lu tid=%p",
411
+ (long unsigned int) getpid(),
412
+ (void *) pthread_self());
413
414
if (old_config->conf_path_file) {
415
file = flb_sds_create(old_config->conf_path_file);
0 commit comments