Avoid compiler warning in parse_mount_entries().

This commit is contained in:
Gerald Pfeifer 2005-05-20 19:24:07 +00:00 committed by Alexandre Julliard
parent dc54dd1439
commit 4135b43387
1 changed files with 1 additions and 0 deletions

View File

@ -294,6 +294,7 @@ static char *parse_mount_entries( FILE *f, dev_t dev, ino_t ino )
if (st.st_dev != dev || st.st_ino != ino) continue;
return entry->fs_spec;
}
return NULL;
}
#endif