style: use /* ... */ comments
authorAkim Demaille <akim@lrde.epita.fr>
Wed, 23 Oct 2013 13:03:45 +0000 (15:03 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Thu, 24 Oct 2013 15:22:21 +0000 (17:22 +0200)
* src/complain.c: Here.

src/complain.c

index 115b704..e767490 100644 (file)
@@ -153,10 +153,10 @@ warnings_argmatch (char *args)
         warnings_are_errors = false;
       else
         {
-          // The length of the possible 'no-' prefix: 3, or 0.
+          /* The length of the possible 'no-' prefix: 3, or 0.  */
           size_t no = STRPREFIX_LIT ("no-", args) ? 3 : 0;
-          // The length of the possible 'error=' (possibly after
-          // 'no-') prefix: 6, or 0.
+          /* The length of the possible 'error=' (possibly after
+             'no-') prefix: 6, or 0. */
           size_t err = STRPREFIX_LIT ("error=", args + no) ? 6 : 0;
 
           warning_argmatch (args, no, err);