listsem: Clean up format strings to use format macros.

Fixes printing values on x86_64.
This commit is contained in:
Michael Lotz
2015-11-04 00:11:16 +01:00
parent f672379ca1
commit 271f422a92
+8 -5
View File
@@ -39,14 +39,15 @@
static void print_sem_info(sem_info *info) static void print_sem_info(sem_info *info)
{ {
printf("%7ld%31s%7ld\n", info->sem ,info->name , info->count); printf("%7" B_PRId32 "%31s%7" B_PRId32 "\n", info->sem, info->name,
info->count);
} }
static void print_header(team_info *tinfo) static void print_header(team_info *tinfo)
{ {
if (tinfo != NULL) if (tinfo != NULL)
printf("TEAM %ld (%s):\n", tinfo->team, tinfo->args ); printf("TEAM %" B_PRId32 " (%s):\n", tinfo->team, tinfo->args);
printf(" ID name count\n"); printf(" ID name count\n");
printf("---------------------------------------------\n"); printf("---------------------------------------------\n");
@@ -75,7 +76,9 @@ int main(int argc, char **argv)
// show up some stats first... // show up some stats first...
get_system_info(&sysinfo); get_system_info(&sysinfo);
printf("sem: total: %5li, used: %5li, left: %5li\n\n", sysinfo.max_sems, sysinfo.used_sems, sysinfo.max_sems - sysinfo.used_sems); printf("sem: total: %5" B_PRIu32 ", used: %5" B_PRIu32 ", left: %5" B_PRIu32
"\n\n", sysinfo.max_sems, sysinfo.used_sems,
sysinfo.max_sems - sysinfo.used_sems);
if (argc == 1) { if (argc == 1) {
while (get_next_team_info( &cookie, &tinfo) == B_OK) while (get_next_team_info( &cookie, &tinfo) == B_OK)
@@ -106,7 +109,7 @@ int main(int argc, char **argv)
print_header(NULL); print_header(NULL);
print_sem_info(&info); print_sem_info(&info);
} else } else
printf("semaphore %ld unknown\n\n", id); printf("semaphore %" B_PRId32 " unknown\n\n", id);
i++; i++;
} }
@@ -116,7 +119,7 @@ int main(int argc, char **argv)
if (get_team_info(team, &tinfo) == B_OK) if (get_team_info(team, &tinfo) == B_OK)
list_sems(&tinfo); list_sems(&tinfo);
else else
printf("team %ld unknown\n\n", team); printf("team %" B_PRId32 " unknown\n\n", team);
} }
} }