Cleaning up code, and separating a little to allow native code to share
[tpg/acess2.git] / Kernel / vfs / main.c
index 4fe8cf9..ef1cd56 100644 (file)
@@ -90,7 +90,7 @@ char *VFS_GetTruePath(char *Path)
 void VFS_GetMemPath(char *Dest, void *Base, Uint Length)
 {
        Dest[0] = '$';
-       itoa( &Dest[1], (Uint)Base, 16, BITS/4, '0' );
+       itoa( &Dest[1], (tVAddr)Base, 16, BITS/4, '0' );
        Dest[BITS/4+1] = ':';
        itoa( &Dest[BITS/4+2], Length, 16, BITS/4, '0' );
        Dest[BITS/2+2] = '\0';

UCC git Repository :: git.ucc.asn.au