瀏覽代碼

Format #ifdef macro

bel2125 3 年之前
父節點
當前提交
0038094654
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/civetweb.c

+ 2 - 2
src/civetweb.c

@@ -591,8 +591,8 @@ typedef const char *SOCK_OPT_TYPE;
 	        (int(__cdecl *)(void *, const void *, const void *))comp,          \
 	        arg)
 #elif defined(__linux__)
-#define mg_qsort(base, num, with, comp, arg)                                   \
-	qsort_r(base, num, with, comp, arg) #else
+#define mg_qsort(base, num, with, comp, arg) qsort_r(base, num, with, comp, arg)
+#else
 #define mg_qsort(base, num, with, comp, arg)
 #endif