From 4ea68a4e03592d1c685f760f66eebe3018536416 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sun, 27 Nov 2016 18:10:50 -0500 Subject: cleanup --- src/faudit/syscall.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/faudit') diff --git a/src/faudit/syscall.c b/src/faudit/syscall.c index 3c87305df..4cd2526ba 100644 --- a/src/faudit/syscall.c +++ b/src/faudit/syscall.c @@ -35,7 +35,8 @@ void syscall_helper(int argc, char **argv) { (void) argc; if (strcmp(argv[2], "mount") == 0) { - mount(NULL, NULL, NULL, 0, NULL); + int rv = mount(NULL, NULL, NULL, 0, NULL); + (void) rv; printf("\nUGLY: mount syscall permitted.\n"); } else if (strcmp(argv[2], "umount2") == 0) { -- cgit v1.2.3-54-g00ecf