diff options
Diffstat (limited to 'tools/perf/util/quote.c')
| -rw-r--r-- | tools/perf/util/quote.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/perf/util/quote.c b/tools/perf/util/quote.c index 639d1da2f978..293534c1a474 100644 --- a/tools/perf/util/quote.c +++ b/tools/perf/util/quote.c @@ -54,7 +54,7 @@ int sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen)  			break;  		ret = sq_quote_buf(dst, argv[i]);  		if (maxlen && dst->len > maxlen) -			die("Too many or long arguments"); +			return -ENOSPC;  	}  	return ret;  } | 
