From b51a65027bbb37b35eafe7b3bf4e2a56dc478441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 14 Oct 2004 14:24:42 +0000 Subject: [PATCH] Fixed a warning. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9343 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/scheduler.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/kernel/core/scheduler.c b/src/kernel/core/scheduler.c index 1ef6cb70f7..4964c001d6 100644 --- a/src/kernel/core/scheduler.c +++ b/src/kernel/core/scheduler.c @@ -1,13 +1,13 @@ -/* The thread scheduler */ - /* -** Copyright 2002-2004, The OpenBeOS Team. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Copyright 2002-2004, The Haiku Team. All rights reserved. +** Distributed under the terms of the Haiku License. ** ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. ** Distributed under the terms of the NewOS License. */ +/* The thread scheduler */ + #include #include @@ -57,7 +57,7 @@ dump_run_queue(int argc, char **argv) dprintf("Run queue is empty!\n"); else { while (thread) { - dprintf("Thread id: %ld - priority: %d\n", thread->id, thread->priority); + dprintf("Thread id: %ld - priority: %ld\n", thread->id, thread->priority); thread = thread->queue_next; } }