diff options
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions.c b/src/actions.c index 0687d5b..67d1289 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2101,7 +2101,7 @@ parse_args (char *str, struct list_head *list, int nargs, int raw) for (i=str; *i; i++) { /* Have we hit the arg limit? */ - if (nargs >= 0 && parsed_args >= nargs) + if (raw && parsed_args >= nargs) { struct sbuf *s = sbuf_new(0); if (!raw) |