summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2013-10-23 15:03:45 +0200
committerAkim Demaille <akim@lrde.epita.fr>2013-10-24 17:22:21 +0200
commit516652b474651d6cbd6f4e0c746b940346d65995 (patch)
tree222aeddec21654cf8f1b89eedbbd0a647a70f935
parent026816664ff8283a55f91915843a8ff0ac5cf86c (diff)
downloadbison-516652b474651d6cbd6f4e0c746b940346d65995.tar.gz
style: use /* ... */ comments
* src/complain.c: Here.
-rw-r--r--src/complain.c6
1 files 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);