X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Fcomplete.c;h=f8a660aa032e272ed3c166d47159d32d9ed1be18;hp=aa51e5b3c88301623ca966e333f4c99f12d85f37;hb=refs%2Fheads%2Ftry-some-d;hpb=cfd5f411041c7ef44087b032751792fadc74586d 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; }