From e7d12ece83f65e0d8b971af6a602187e901583eb Mon Sep 17 00:00:00 2001 From: shatty Date: Sun, 29 Sep 2002 00:20:18 +0000 Subject: [PATCH] corrected format specifier to remove a warning. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1258 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/apps/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/apps/init.c b/src/kernel/apps/init.c index 70071a11d9..cbf5c896b2 100644 --- a/src/kernel/apps/init.c +++ b/src/kernel/apps/init.c @@ -49,7 +49,7 @@ int main() pid = sys_create_team("/boot/bin/shell", "/boot/bin/shell", NULL, 0, NULL, 0, 5); if(pid >= 0) { int retcode; - printf("init: spawned shell, pid 0x%x\n", pid); + printf("init: spawned shell, pid 0x%lx\n", pid); sys_wait_on_team(pid, &retcode); printf("init: shell exited with return code %d\n", retcode); } else {