瀏覽代碼

utils.c - Comment type fails compilation on AIX.

Changed // to /* as reported by hkpatv.  Resolves Issue #30.
abrist 12 年之前
父節點
當前提交
4e90e509f2
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/utils.c

+ 2 - 2
plugins/utils.c

@@ -631,7 +631,7 @@ char *fperfdata (const char *label,
 	return data;
 }
 
-// set entire string to lower, no need to return as it works on string in place
+/* set entire string to lower, no need to return as it works on string in place */
 void strntolower (char * test_char, int size) {
 
         char * ptr = test_char;
@@ -641,7 +641,7 @@ void strntolower (char * test_char, int size) {
 
 }
 
-// set entire string to lower, no need to return as it works on string in place
+/* set entire string to lower, no need to return as it works on string in place */
 void strntoupper (char * test_char, int size) {
 
         char * ptr = test_char;