Browse Source

one variable per line

Christian Grothoff 9 năm trước cách đây
mục cha
commit
94c0fd7183
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/microhttpd/basicauth.c

+ 2 - 1
src/microhttpd/basicauth.c

@@ -117,7 +117,8 @@ MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection,
 				    const char *realm, 
 				    struct MHD_Response *response) 
 {
-  int ret, res;
+  int ret;
+  int res;
   size_t hlen = strlen(realm) + strlen("Basic realm=\"\"") + 1;
   char *header;