aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-04 11:54:51 +0000
committerantirez <antirez>2005-03-04 11:54:51 +0000
commitb503c0ce39965cb68fe8bbdee4f4fffe8c39b81f (patch)
tree639987e1dd074b6651f934838ea5583382c9cbb9 /jim-posix.c
parent71b54a34aefa47861f9d82102f898a3dc18ba798 (diff)
downloadjimtcl-b503c0ce39965cb68fe8bbdee4f4fffe8c39b81f.zip
jimtcl-b503c0ce39965cb68fe8bbdee4f4fffe8c39b81f.tar.gz
jimtcl-b503c0ce39965cb68fe8bbdee4f4fffe8c39b81f.tar.bz2
Added JIM_NOTUSED macro. Macro used where appropriate.
Diffstat (limited to 'jim-posix.c')
-rw-r--r--jim-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jim-posix.c b/jim-posix.c
index 3d62586..0310159 100644
--- a/jim-posix.c
+++ b/jim-posix.c
@@ -16,8 +16,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;
- argv = argv; /* not used */
if (argc != 1) {
Jim_WrongNumArgs(interp, 1, argv, "");