about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2001-08-08 07:44:00 +0000
committerWayne Davison <wayned@users.sourceforge.net>2001-08-08 07:44:00 +0000
commitfe98c239b540e8d7c7bdf125ed20cf73c4aa22b0 (patch)
tree9722c783b9459c309ad6a484e97df0017536d12b /Src
parent4afcd4b1492a5f139c108c7b66f5efa47229ed9f (diff)
downloadzsh-fe98c239b540e8d7c7bdf125ed20cf73c4aa22b0.tar.gz
zsh-fe98c239b540e8d7c7bdf125ed20cf73c4aa22b0.tar.xz
zsh-fe98c239b540e8d7c7bdf125ed20cf73c4aa22b0.zip
Silence "might be used uninitialized" warnings.
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/computil.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c
index d1bd0aac1..2da2b3634 100644
--- a/Src/Zle/computil.c
+++ b/Src/Zle/computil.c
@@ -610,6 +610,7 @@ cd_get(char **params)
             }
             break;
 
+	default: /* This silences the "might be used uninitialized" warnings */
         case CRT_EXPL:
             {
                 int dlen = columns - cd_state.gpre - cd_state.slen;