diff options
author | Peter Stephenson <pws@zsh.org> | 2015-10-27 09:28:36 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-10-27 09:28:36 +0000 |
commit | d45a68c5463224f43721371fb7bd4cbc24e62874 (patch) | |
tree | 49f64e7412eccbb0444ea52bf62c48aa1eac0c69 /Src/Zle/computil.c | |
parent | 81fa9fd25a57ebaf7e242bc678a6fd179bbdb718 (diff) | |
download | zsh-d45a68c5463224f43721371fb7bd4cbc24e62874.tar.gz zsh-d45a68c5463224f43721371fb7bd4cbc24e62874.tar.xz zsh-d45a68c5463224f43721371fb7bd4cbc24e62874.zip |
36974: fix some functions with empty argument lists
Diffstat (limited to 'Src/Zle/computil.c')
-rw-r--r-- | Src/Zle/computil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index db8db88a6..60fb096be 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -185,7 +185,7 @@ cd_group(int maxg) * descriptions. */ static void -cd_calc() +cd_calc(void) { Cdset set; Cdstr str; @@ -236,7 +236,7 @@ cd_sort(const void *a, const void *b) } static int -cd_prep() +cd_prep(void) { Cdrun run, *runp; Cdset set; |