mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
tests: ignore zero inode
This commit is contained in:
@ -72,7 +72,7 @@ list_maps (const char *filename)
|
|||||||
|
|
||||||
if (inode == (ino_t)-1)
|
if (inode == (ino_t)-1)
|
||||||
g_print (" (missing)");
|
g_print (" (missing)");
|
||||||
else if (inode != ev->inode)
|
else if (inode != 0 && inode != ev->inode)
|
||||||
g_print (" (Inode mismatch, expected %lu got %lu)",
|
g_print (" (Inode mismatch, expected %lu got %lu)",
|
||||||
(gulong)ev->inode, (gulong)inode);
|
(gulong)ev->inode, (gulong)inode);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user