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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librc/librc.c b/src/librc/librc.c
index 7062d16..0090036 100644
--- a/src/librc/librc.c
+++ b/src/librc/librc.c
@@ -208,13 +208,13 @@ rc_sys_v2(void)
/* New sys identification code */
if (systype) {
char* s = systype;
- // Convert to uppercase
+ /* Convert to uppercase */
while (s && *s) {
if (islower((unsigned char)*s))
*s = toupper((unsigned char)*s);
s++;
}
- // Now do detection
+ /* Now do detection */
__STRING_SWITCH(systype)
__STRING_CASE(RC_SYS_PREFIX) { return RC_SYS_PREFIX; }
#ifdef __FreeBSD__