X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-ui%2Fcomplete.c;h=f8a660aa032e272ed3c166d47159d32d9ed1be18;hb=19806c1ee3019ddf9facf23eb19a13c128abfba9;hp=aa51e5b3c88301623ca966e333f4c99f12d85f37;hpb=981e10e224fde4de5d40adcee1deda89df2715ca;p=apps%2Fmadmutt.git diff --git a/lib-ui/complete.c b/lib-ui/complete.c index aa51e5b..f8a660a 100644 --- a/lib-ui/complete.c +++ b/lib-ui/complete.c @@ -92,7 +92,7 @@ int mutt_complete (char *s, ssize_t slen) } if (dirp == NULL) { - return (-1); + return -1; } /* @@ -154,5 +154,5 @@ int mutt_complete (char *s, ssize_t slen) else m_strcpy(s, slen, filepart); - return (init ? 0 : -1); + return init ? 0 : -1; }