From 67572c21e8c84218b42c230b52b115b2128befeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 20 Nov 2010 04:29:12 +0000 Subject: [PATCH] Print natfeat IDs as hex. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39532 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/atari_m68k/toscalls.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/boot/platform/atari_m68k/toscalls.cpp b/src/system/boot/platform/atari_m68k/toscalls.cpp index 8f9b7faeba..6b85f5a1cf 100644 --- a/src/system/boot/platform/atari_m68k/toscalls.cpp +++ b/src/system/boot/platform/atari_m68k/toscalls.cpp @@ -216,7 +216,7 @@ init_nat_features(void) if (nat_features()) { // find debugprintf id gDebugPrintfNatFeatID = nat_feat_getid("DEBUGPRINTF"); - dprintf("DEBUGPRINTF natfeat id %d\n", gDebugPrintfNatFeatID); + dprintf("DEBUGPRINTF natfeat id 0x%08lx\n", gDebugPrintfNatFeatID); // pass native features infos to the kernel gKernelArgs.arch_args.plat_args.atari.nat_feat.nf_get_id = nat_features()->nfGetID; @@ -226,7 +226,7 @@ init_nat_features(void) gDebugPrintfNatFeatID; // find other natfeat ids gBootstrapNatFeatID = nat_feat_getid("BOOTSTRAP"); - dprintf("BOOTSTRAP natfeat id %d\n", gBootstrapNatFeatID); + dprintf("BOOTSTRAP natfeat id 0x%08lx\n", gBootstrapNatFeatID); } return nat_features() ? B_OK : B_ENTRY_NOT_FOUND; }