]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/edit.c
Remove silly superflous parenthesis.
[empserver] / src / lib / commands / edit.c
index 96198e105e621cd6bc858a44c8ab72e9f3f4c63d..bfaeff6c091633cb54ddf35b9aa4da74852ce78e 100644 (file)
@@ -464,13 +464,13 @@ getin(s_char **what, s_char **p, int *arg, s_char *buf)
     if (**what == '\0')
        return END;
     while (**what && isspace(**what))
-       (*what)++;
+       *what++;
     if (**what == '\0')
        return RET_SYN;
-    for (*p = *what; **p && !isspace(**p); (*p)++)     /* skip non spaces */
+    for (*p = *what; **p && !isspace(**p); *p++)       /* skip non spaces */
        continue;
     while (**p && isspace(**p))
-       (*p)++;
+       *p++;
     if (**p == '\0')
        return RET_SYN;
     *arg = atoi(*p);