Fix: incorrect printf format
[lttng-tools.git] / src / common / utils.c
index 815965bc4ba25256de830f0794cf357f2150db70..9821815ba06298dfbb7e76de02bbc385b9d49d0d 100644 (file)
@@ -889,7 +889,7 @@ size_t utils_get_current_time_str(const char *format, char *dst, size_t len)
        timeinfo = localtime(&rawtime);
        ret = strftime(dst, len, format, timeinfo);
        if (ret == 0) {
-               ERR("Unable to strftime with format %s at dst %p of len %lu", format,
+               ERR("Unable to strftime with format %s at dst %p of len %zu", format,
                                dst, len);
        }
 
This page took 0.025125 seconds and 5 git commands to generate.