Style fix: /* */ comments not // comments.

This commit is contained in:
Robin H. Johnson 2011-01-17 08:43:40 +00:00
parent 0c93f4df32
commit c0a3e25d48

View File

@ -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__