Fix: incorrect printf format
[lttng-tools.git] / src / common / utils.c
index b345100ea0fa5ad6517d28c72cbc53a5bd87e391..11b165bc15444fa66005f2ee65c4579e6c9fef32 100644 (file)
@@ -660,7 +660,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.023107 seconds and 4 git commands to generate.