Commit 4135b433 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Avoid compiler warning in parse_mount_entries().

parent dc54dd14
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment