diff options
Diffstat (limited to 'jim-array.c')
-rw-r--r-- | jim-array.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jim-array.c b/jim-array.c index d4f9449..179e110 100644 --- a/jim-array.c +++ b/jim-array.c @@ -1,4 +1,3 @@ - /* * Implements the array command for jim * @@ -157,8 +156,8 @@ static int array_cmd_stat(Jim_Interp *interp, int argc, Jim_Obj *const *argv) if (objPtr) { return Jim_DictInfo(interp, objPtr); } - Jim_SetResultFormatted(interp, "\"%#s\" isn't an array", argv[0], NULL); - return JIM_ERR; + Jim_SetResultFormatted(interp, "\"%#s\" isn't an array", argv[0], NULL); + return JIM_ERR; } static int array_cmd_set(Jim_Interp *interp, int argc, Jim_Obj *const *argv) |