diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index bd5f27b..351a31a 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -362,7 +362,7 @@ static llist_t *get_block_backed_filesystems(void) f = fopen(filesystems[i], "r"); if (!f) continue; - while ((buf = xmalloc_getline(f)) != 0) { + while ((buf = xmalloc_fgetline(f)) != NULL) { if (!strncmp(buf, "nodev", 5) && isspace(buf[5])) continue; fs = skip_whitespace(buf); |