static int count_pri64_printf(int idx, const char *str, u64 value, char *bf, int bfsize)
 {
-       int printed;
-
-       printed = scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value);
-
-       return printed;
+       return scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value);
 }
 
 static int count_float_printf(int idx, const char *str, float value,
                              char *bf, int bfsize, float threshold)
 {
-       int printed;
-
        if (threshold != 0.0 && value < threshold)
                return 0;
 
-       printed = scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value);
-
-       return printed;
+       return scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value);
 }
 
 static int branch_to_str(char *bf, int bfsize,