As suggested by Rene and Andreas: Use '%lld' instead of the non-standard

'%Ld'. This solves build problems in Solaris.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26923 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-08-10 22:18:53 +00:00
parent 461106374f
commit bbc9703cc3

View File

@ -152,7 +152,7 @@ bfs_mount(fs_volume* _volume, const char* device, uint32 flags,
_volume->ops = &gBFSVolumeOps;
*_rootID = volume->ToVnode(volume->Root());
INFORM(("mounted \"%s\" (root node at %Ld, device = %s)\n",
INFORM(("mounted \"%s\" (root node at %lld, device = %s)\n",
volume->Name(), *_rootID, device));
return B_OK;
}