aboutsummaryrefslogtreecommitdiff
path: root/jimsh.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-07 07:27:52 +0000
committerantirez <antirez>2005-04-07 07:27:52 +0000
commit14c7f56961129ad63807351ece92f93e9bc76cf6 (patch)
treef3414026a449e4e4ed7d634d68692721e5f10418 /jimsh.c
parent1bc8475bb9ef3ef508cda965290aca44f35f120c (diff)
downloadjimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.zip
jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.gz
jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.bz2
Fixed a typo that prevented compilation with JIM_ANSIC
Diffstat (limited to 'jimsh.c')
-rw-r--r--jimsh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jimsh.c b/jimsh.c
index c6582dd..1e4c1f6 100644
--- a/jimsh.c
+++ b/jimsh.c
@@ -1,7 +1,7 @@
/* Jimsh - An interactive shell for Jim
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jimsh.c,v 1.5 2005/04/06 18:20:00 antirez Exp $
+ * $Id: jimsh.c,v 1.6 2005/04/07 07:27:52 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -82,7 +82,7 @@ static Jim_Obj *JimGetExePath(Jim_Interp *interp, const char *argv0)
/* ... and impossible with just ANSI C */
static Jim_Obj *JimGetExePath(Jim_Interp *interp, const char *argv0)
{
- JIM_UNUSED(argv0);
+ JIM_NOTUSED(argv0);
return Jim_NewStringObj(interp, "/usr/local/lib/jim/", -1);
}
#endif /* JIM_ANSIC */