fixed printf warning

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1643 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Daniel Reinhold 2002-10-25 10:53:36 +00:00
parent ae770392d2
commit 95574b3621

View File

@ -49,7 +49,7 @@ int main(int argc, char **argv)
printf("-----------------------------------------------------------------------\n");
while (get_next_team_info(&team_num, &team) == B_OK) {
printf("%s (team %ld) (uid %ld) (gid %ld)\n",
printf("%s (team %ld) (uid %d) (gid %d)\n",
team.args, team.team, team.uid, team.gid);
thread_num = 0;
while (get_next_thread_info(team.team, &thread_num, &thread) == B_OK) {