aboutsummaryrefslogtreecommitdiff
path: root/listbas.c
diff options
context:
space:
mode:
Diffstat (limited to 'listbas.c')
-rw-r--r--listbas.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/listbas.c b/listbas.c
index 8561e3b..b0e2253 100644
--- a/listbas.c
+++ b/listbas.c
@@ -41,7 +41,6 @@
#define ENV_MAX_ARGS 64
/* #define DEBUG_ENV */
-
/* output modes */
#define M_UTF8 0 /* default */
#define M_UTF8_I 1 /* -x */
@@ -164,6 +163,8 @@ void parse_env_args(void) {
if(*p == ' ' || *p == '\t') {
*p = '\0';
if(fargc == ENV_MAX_ARGS) {
+ /* not gonna bother with the man page for this, it's
+ long enough already. it's a pathological case. */
fprintf(stderr, "%s: Too many spaces in " ENV_OPTS " (max %d)\n", self, ENV_MAX_ARGS - 1);
break;
}