diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-01-21 22:49:56 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-01-21 22:49:56 +0000 |
commit | c53aa4adee9236a08d2d88c6e753588760b88f0e (patch) | |
tree | 67a96b893514eb01ab599ece07a01db217cba966 /Src | |
parent | 553e011320798af097e8de95a1e2a1d2ed6a1a3e (diff) | |
download | zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.gz zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.xz zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.zip |
unposted; typo
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/computil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 1dbefa589..f9c55296c 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -213,7 +213,7 @@ cd_calc() static int cd_sort(const void *a, const void *b) { - return zstrpcmp((*((Cdstr *) a))->sortstr, (*((Cdstr *) b))->sortstr, 0); + return zstrcmp((*((Cdstr *) a))->sortstr, (*((Cdstr *) b))->sortstr, 0); } static int |