[cmake-commits] king committed url.c 1.2 1.3
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu May 3 13:03:15 EDT 2007
Update of /cvsroot/CMake/CMake/Utilities/cmcurl
In directory public:/mounts/ram/cvs-serv18209/Utilities/cmcurl
Modified Files:
url.c
Log Message:
COMP: Fix code-not-reached warnings for SunCC.
Index: url.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Utilities/cmcurl/url.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- url.c 15 Mar 2007 19:22:13 -0000 1.2
+++ url.c 3 May 2007 17:03:13 -0000 1.3
@@ -192,7 +192,7 @@
#ifdef HAVE_SIGSETJMP
siglongjmp(curl_jmpenv, 1);
#endif
- return;
+ /*return;*/ /* not reahed, and has no effect anyway */
}
#endif /* SIGALRM */
#endif /* WIN32 */
More information about the Cmake-commits
mailing list