aboutsummaryrefslogtreecommitdiffstats
path: root/src/getstring.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2011-11-02 19:30:54 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2011-11-02 19:38:38 +0100
commit6f01c7af972dbf4698c63b707b225469b9405e47 (patch)
tree9a48f43a43992da80dcdd6415941cc72c7f6878d /src/getstring.c
parentce3f0ce76f59216ff82ecd79e180a5c59d3d60d0 (diff)
downloadcalcurse-6f01c7af972dbf4698c63b707b225469b9405e47.tar.gz
calcurse-6f01c7af972dbf4698c63b707b225469b9405e47.zip
Remove parentheses from return statements
No reason to use "return (x);" here. Refer to the GNU coding guidelines for details. Created using following semantic patch: @@ expression expr; @@ - return (expr); + return expr; Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/getstring.c')
-rw-r--r--src/getstring.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/getstring.c b/src/getstring.c
index 37d6fdc..29ca82b 100644
--- a/src/getstring.c
+++ b/src/getstring.c
@@ -252,7 +252,7 @@ getstring (WINDOW *win, char *str, int l, int x, int y)
if (st.pos < st.len) st.pos++;
break;
case ESCAPE: /* cancel editing */
- return (GETSTRING_ESC);
+ return GETSTRING_ESC;
break;
default: /* insert one character */
c[0] = ch;
@@ -268,7 +268,7 @@ getstring (WINDOW *win, char *str, int l, int x, int y)
custom_remove_attr (win, ATTR_HIGHEST);
- return (st.len == 0 ? GETSTRING_RET : GETSTRING_VALID);
+ return st.len == 0 ? GETSTRING_RET : GETSTRING_VALID;
}
/* Update an already existing string. */