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

@ -92,7 +92,7 @@ int install_main(int argc, char **argv)
}
} while (old_argv_ptr);
}
return(ret);
return ret;
}
{
@ -127,5 +127,5 @@ int install_main(int argc, char **argv)
if(ENABLE_FEATURE_CLEAN_UP && isdir) free(dest);
}
return(ret);
return ret;
}