From 516652b474651d6cbd6f4e0c746b940346d65995 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Wed, 23 Oct 2013 15:03:45 +0200 Subject: style: use /* ... */ comments * src/complain.c: Here. --- src/complain.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/complain.c b/src/complain.c index 115b7043..e767490c 100644 --- a/src/complain.c +++ b/src/complain.c @@ -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); -- cgit v1.2.1