diff options
author | Roy Marples <roy@marples.name> | 2007-12-20 18:49:44 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-20 18:49:44 +0000 |
commit | 851cf1098625c10235ac60d2f15159df53abfd58 (patch) | |
tree | 7478472b38b962ff619c2ba40ce856c3e88c608a /src | |
parent | cbea91cae5ab8ff97f4d534181c0b0ea7c743d38 (diff) |
Don't mix code and decs
Diffstat (limited to 'src')
-rw-r--r-- | src/checkpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checkpath.c b/src/checkpath.c index 9c1fba67..612a0769 100644 --- a/src/checkpath.c +++ b/src/checkpath.c @@ -186,9 +186,9 @@ int checkpath (int argc, char **argv) struct passwd *pw = NULL; struct group *gr = NULL; bool file = 0; + int retval = EXIT_SUCCESS; applet = basename_c (argv[0]); - int retval = EXIT_SUCCESS; while ((opt = getopt_long (argc, argv, getoptstring, longopts, (int *) 0)) != -1) |