aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-02-20 02:48:19 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2012-02-20 02:48:19 +0100
commitfdee1f2a221e7569e2d089b72ed4fb6808edf556 (patch)
tree5803bd0e1696ef0244fa440bfa6aeb2d8bdaa4a1 /src/io.c
parent7c91248629ce2d9fd22ef58b88ad8ba760181277 (diff)
downloadcalcurse-fdee1f2a221e7569e2d089b72ed4fb6808edf556.tar.gz
calcurse-fdee1f2a221e7569e2d089b72ed4fb6808edf556.zip
src/io.c: Remove C89 incompatible comment
Make commenting style consistent with everywhere else. Use "/* [...] */" instead of "// [...]". Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io.c b/src/io.c
index c7401e4..e5b6f0d 100644
--- a/src/io.c
+++ b/src/io.c
@@ -574,7 +574,7 @@ io_load_app (void)
EXIT (_("syntax error in item repetition"));
}
else if (c == '!')
- { // endless item with exceptions
+ { /* endless item with exceptions */
ungetc (c, data_file);
recur_exc_scan (&exc, data_file);
c = getc (data_file);