aboutsummaryrefslogtreecommitdiff
path: root/lib.c
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-01-27 01:00:23 -0800
committerJosh Triplett <josh@freedesktop.org>2007-01-27 01:00:23 -0800
commitc2f0f35a3fa25ab66e07e5eec3634df4d0432230 (patch)
treee09139170ee920e406e7873cf25ea401674a4c74 /lib.c
parentEnhance debug information. (diff)
downloadsparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.tar.gz
sparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.tar.bz2
sparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.zip
Coding style fix: in a pointer type, * goes with the name, not the type.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index d6ef0ec..8adb2ab 100644
--- a/lib.c
+++ b/lib.c
@@ -449,7 +449,7 @@ static char **handle_dirafter(char *arg, char **next)
struct switches {
const char *name;
- char **(*fn)(char *, char**);
+ char **(*fn)(char *, char **);
};
char **handle_switch(char *arg, char **next)