G_GNUC_UNUSED fun and other compiler warnings ...

This commit is contained in:
Martin Baulig
1998-10-03 03:19:09 +00:00
parent be63bf2d42
commit dfda639756
19 changed files with 36 additions and 38 deletions

View File

@@ -54,8 +54,10 @@ main (int argc, const char *argv [])
if (!inodedb) exit (1);
filename = glibtop_inodedb_lookup (inodedb, device, inode);
if (!filename) exit (0);
if (!filename) exit (2);
fprintf (stderr, "FILENAME: %lu - %lu - '%s'\n",
device, inode, filename);
fprintf (stderr, "FILENAME: %d - %d - '%s'\n",
(int) device, (int) inode, filename);
exit (0);
}