소스 검색

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