aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-04 15:37:54 +0000
committerantirez <antirez>2005-03-04 15:37:54 +0000
commit8c274cd82000026b9c1ad0e0e9ad5378f2c0d800 (patch)
treec7d96ca9f8f655811ec192feee0eed75d18ee608 /jim-posix.c
parent5817ec309eec01ffedc66cbc58cbcaf461b230da (diff)
downloadjimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.zip
jimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.tar.gz
jimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.tar.bz2
JIM_NOTUSED moved after var declarations blocks.
Diffstat (limited to 'jim-posix.c')
-rw-r--r--jim-posix.c4
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, "");