From 79939c8d1ef6eb6d3004ad2b5a41d4abbde15fcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 18 Nov 2007 11:57:35 +0000 Subject: [PATCH] The KDL command "teams" now also prints the team ID in decimal rather than hex. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22944 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/team.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/kernel/team.cpp b/src/system/kernel/team.cpp index 5a6cc4f6bb..5534473e49 100644 --- a/src/system/kernel/team.cpp +++ b/src/system/kernel/team.cpp @@ -155,11 +155,11 @@ dump_teams(int argc, char **argv) struct hash_iterator iterator; struct team *team; - kprintf("team id parent name\n"); + kprintf("team id parent name\n"); hash_open(sTeamHash, &iterator); while ((team = (struct team*)hash_next(sTeamHash, &iterator)) != NULL) { - kprintf("%p%6lx %p %s\n", team, team->id, team->parent, team->name); + kprintf("%p%7ld %p %s\n", team, team->id, team->parent, team->name); } hash_close(sTeamHash, &iterator, false);