diff options
Diffstat (limited to 'jim-posix.c')
-rw-r--r-- | jim-posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jim-posix.c b/jim-posix.c index 3e27408..76129c7 100644 --- a/jim-posix.c +++ b/jim-posix.c @@ -1,7 +1,7 @@ /* Jim - POSIX extension * Copyright 2005 Salvatore Sanfilippo <antirez@invece.org> * - * $Id: jim-posix.c,v 1.8 2005/03/04 12:32:21 antirez Exp $ + * $Id: jim-posix.c,v 1.9 2005/03/04 15:37:54 antirez Exp $ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,8 +37,8 @@ static void Jim_PosixSetError(Jim_Interp *interp) static int Jim_PosixForkCommand(Jim_Interp *interp, int argc, Jim_Obj *const *argv) { - JIM_NOTUSED(argv); pid_t pid; + JIM_NOTUSED(argv); if (argc != 1) { Jim_WrongNumArgs(interp, 1, argv, ""); |