Fixed a warning.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7097 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-03-28 23:52:11 +00:00
parent dcd4e5937b
commit 725c92923a

View File

@ -54,7 +54,7 @@ rtc_print(void)
currentTime = (sBootTime + system_time()) / 1000000;
dprintf("system_time: %Ld\n", system_time());
dprintf("boot_time: %Ld\n", sBootTime);
dprintf("current_time: %u\n", currentTime);
dprintf("current_time: %lu\n", currentTime);
}