style cleanup: return(a) -> return a, part 1

This commit is contained in:
Denis Vlasenko
2006-11-27 16:49:31 +00:00
parent 10d0d4eec7
commit 079f8afa0a
36 changed files with 214 additions and 219 deletions

View File

@@ -363,6 +363,6 @@ int main(int argc, char **argv)
printf("%s: error probing devices\n", argv[0]);
blkid_put_cache(cache);
return (0);
return 0;
}
#endif