From b2d0656814c2afe9a05b3e130f0289b225a371ec Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 17 Jan 2011 08:46:41 +0000 Subject: Style fix: "char *foo" not "char* foo". --- src/librc/librc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/librc/librc.c') diff --git a/src/librc/librc.c b/src/librc/librc.c index 0090036..a8fc71a 100644 --- a/src/librc/librc.c +++ b/src/librc/librc.c @@ -201,17 +201,17 @@ file_regex(const char *file, const char *regex) const char * rc_sys_v2(void) { -#define __STRING_SWITCH(x) { char* __string_switch = x; if (false) {} +#define __STRING_SWITCH(x) { char *__string_switch = x; if (false) {} #define __STRING_CASE(y) else if (strcmp(__string_switch,y) == 0) #define __STRING_SWITCH_END() } - char* systype = rc_conf_value("rc_sys"); + char *systype = rc_conf_value("rc_sys"); /* New sys identification code */ if (systype) { - char* s = systype; + char *s = systype; /* Convert to uppercase */ while (s && *s) { - if (islower((unsigned char)*s)) - *s = toupper((unsigned char)*s); + if (islower((unsigned char) *s)) + *s = toupper((unsigned char) *s); s++; } /* Now do detection */ -- cgit v1.2.3