]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Remove C99-isms.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 23 May 2005 17:27:26 +0000 (17:27 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 23 May 2005 17:27:26 +0000 (17:27 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@4522 7a7537e8-13f0-0310-91df-b6672ffda945

cups/http.c
cups/ipp.c

index 0465cae33c8050e6cf449d728c04e33d4f14f9e8..6644f7033e0431bd5a0e5d68c5e6a8c85c749287 100644 (file)
@@ -553,7 +553,7 @@ httpReconnect(http_t *http)         /* I - HTTP data */
   setsockopt(http->fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val)); 
 #else
   setsockopt(http->fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val)); 
-#endif // WIN32
+#endif /* WIN32 */
 
  /*
   * Connect to the server...
index 038f027d1eede2ccf954681b02a59a1bff4030d2..21956c0204aa273a8d4392a097c473d343f9ec80 100644 (file)
@@ -79,7 +79,7 @@
 
 #ifdef WIN32
 #  include <io.h>
-#endif // WIN32
+#endif /* WIN32 */
 
 
 /*