From 36bf8ac911559522fd805b10fd48b7d10f541f3a Mon Sep 17 00:00:00 2001 From: Vitaliy Ivanov Date: Mon, 15 Jul 2013 13:12:52 +0300 Subject: [PATCH] mnexec.c: substituting tabs with spaces. --- mnexec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mnexec.c b/mnexec.c index bd7b1b1..b1b2745 100644 --- a/mnexec.c +++ b/mnexec.c @@ -46,7 +46,7 @@ void usage(char *name) int setns(int fd, int nstype) { - return syscall(__NR_setns, fd, nstype); + return syscall(__NR_setns, fd, nstype); } /* Validate alphanumeric path foo1/bar2/baz */ @@ -112,9 +112,9 @@ int main(int argc, char *argv[]) case -1: perror("fork"); return 1; - case 0: /* child */ + case 0: /* child */ break; - default: /* parent */ + default: /* parent */ return 0; } }