summaryrefslogtreecommitdiff
path: root/src/librc/librc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/librc/librc.c')
-rw-r--r--src/librc/librc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librc/librc.c b/src/librc/librc.c
index a5b0bbd..7062d16 100644
--- a/src/librc/librc.c
+++ b/src/librc/librc.c
@@ -209,7 +209,7 @@ rc_sys_v2(void)
if (systype) {
char* s = systype;
// Convert to uppercase
- while(s && *s) {
+ while (s && *s) {
if (islower((unsigned char)*s))
*s = toupper((unsigned char)*s);
s++;