gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 49/163: cmake: fixed comments in compile checks cod


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 49/163: cmake: fixed comments in compile checks code
Date: Sun, 05 Aug 2018 12:36:15 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 954284f9192ccc9719e39970f39c7ac2d9090511
Author: Sergei Nikulov <address@hidden>
AuthorDate: Mon May 28 09:01:48 2018 +0300

    cmake: fixed comments in compile checks code
---
 CMake/CurlTests.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/CMake/CurlTests.c b/CMake/CurlTests.c
index ac959f340..ab244ac39 100644
--- a/CMake/CurlTests.c
+++ b/CMake/CurlTests.c
@@ -513,7 +513,7 @@ void check(char c) {}
 int
 main () {
   char buffer[1024];
-  // This will not compile if strerror_r does not return a char*
+  /* This will not compile if strerror_r does not return a char* */
   check(strerror_r(EACCES, buffer, sizeof(buffer))[0]);
   return 0;
 }
@@ -522,13 +522,13 @@ main () {
 #include <string.h>
 #include <errno.h>
 
-// float, because a pointer can't be implicitly cast to float
+/* float, because a pointer can't be implicitly cast to float */
 void check(float f) {}
 
 int
 main () {
   char buffer[1024];
-  // This will not compile if strerror_r does not return an int
+  /* This will not compile if strerror_r does not return an int */
   check(strerror_r(EACCES, buffer, sizeof(buffer)));
   return 0;
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]