Displaying 1 result from an estimated 1 matches for "remove_spac".
Did you mean:
  remove_spaces
  
2014 Nov 22
1
Get rid of printf format warning format ‘%llx’ expects type ‘long long unsigned int’, but argument 2 has type ‘uint64_t’
...= 0; i < count; i++) {
 	get_type(map[i].type, type, 14);
-	more_printf("%016llx - %016llx %016llx (%s)\n",
+	more_printf("%016" PRIx64 " - %016" PRIx64 " %016" PRIx64 " (%s)\n",
 		    map[i].addr, map[i].size, map[i].addr + map[i].size,
 		    remove_spaces(type));
     }
@@ -60,7 +60,7 @@ static void show_memory_e820(int argc __unused, char **argv __unused,
     more_printf("Sanitized e820 map:\n");
     for (int i = 0; i < nr; i++) {
 	get_type(nm[i].type, type, 14);
-	more_printf("%016llx - %016llx %016llx (%s)\n",
+	more_p...