diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-23 17:38:22 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-07-23 17:38:22 -0400 |
commit | 5f1c74cbb008314063e42acd91753afec9b3d24e (patch) | |
tree | 76013293ed0c9c1b0aae60989c3f6ffb608a702b | |
parent | da0fbab34f740b8f180e6608e6667f9ebda96859 (diff) | |
download | expac-5f1c74cbb008314063e42acd91753afec9b3d24e.tar.xz |
add static qualifier to trim_optdep
-rw-r--r-- | expac.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ static char *strtrim(char *str) { return str; } -char *trim_optdep(char *optdep) { +static char *trim_optdep(char *optdep) { char *colon; colon = strchr(optdep, ':'); |