about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-09-12 23:25:29 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-09-12 23:25:29 +0000
commit4c1f4b1fc8730007d6a58255fd002f81fcadbf94 (patch)
tree88b13b71778c54828c207d9d1354323ad026de00 /Src/utils.c
parent9ec0970313b667a422671bbc56b38af9c9f86ec7 (diff)
downloadzsh-4c1f4b1fc8730007d6a58255fd002f81fcadbf94.tar.gz
zsh-4c1f4b1fc8730007d6a58255fd002f81fcadbf94.tar.xz
zsh-4c1f4b1fc8730007d6a58255fd002f81fcadbf94.zip
manual/7787
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index bc51711c5..fcc8b72e3 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -2999,7 +2999,7 @@ bslashquote(const char *s, char **e, int instring)
 
     if (e && *e == u)
 	*e = v, sf = 1;
-    DPUTS(!e || sf, "BUG: Wild pointer *e in bslashquote()");
+    DPUTS(e && !sf, "BUG: Wild pointer *e in bslashquote()");
 
     return buf;
 }