Print natfeat IDs as hex.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39532 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2010-11-20 04:29:12 +00:00
parent ffc80aab15
commit 67572c21e8
@@ -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;
}