diff options
author | Daniel Mack <github@zonque.org> | 2015-06-12 08:11:22 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-06-12 08:11:22 +0200 |
commit | 4ff7d7e90ccc47e1e7e1f99bbeaae669d04ce782 (patch) | |
tree | 9b47e54a8a89991661c0a9b6d1426c6f2fd15f88 | |
parent | ed810b68d323a58b6c36fd00d1118699466ca34a (diff) | |
parent | 034e10d7fb8bd3d574bc4861f84cf4a86c343bf2 (diff) |
Merge pull request #177 from ssahani/net
core: fix CID 996302
-rw-r--r-- | src/core/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/umount.c b/src/core/umount.c index bee267a5ad..d59b5d0ffb 100644 --- a/src/core/umount.c +++ b/src/core/umount.c @@ -385,7 +385,7 @@ static int mount_points_list_umount(MountPoint **head, bool *changed, bool log_e * alias read-only we hence should be * relatively safe regarding keeping the fs we * can otherwise not see dirty. */ - mount(NULL, m->path, NULL, MS_REMOUNT|MS_RDONLY, NULL); + (void) mount(NULL, m->path, NULL, MS_REMOUNT|MS_RDONLY, NULL); } /* Skip / and /usr since we cannot unmount that |