From 8853a6f2827739120057d4eda56a12bd3474e4c6 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 1 Aug 2012 17:24:34 +0200 Subject: coding style fixes Signed-off-by: Florian Pritz Signed-off-by: Dan McGee --- lib/libalpm/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/util.c') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 0196f3bb..033058a0 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -65,9 +65,9 @@ * @return pointer to the first token in str if str is not NULL, NULL if * str is NULL */ -char* strsep(char** str, const char* delims) +char *strsep(char **str, const char *delims) { - char* token; + char *token; if(*str==NULL) { /* No more tokens */ -- cgit v1.2.3-24-g4f1b