package/makedevs: fixing missing return type

This patch fixes a missing return type in bb_recursive function.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Angelo Compagnucci 2015-04-13 08:32:21 +02:00 committed by Thomas Petazzoni
parent edbeeeff57
commit f3b8056960
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ void bb_show_usage(void)
exit(1);
}
bb_recursive(const char *fpath, const struct stat *sb,
int bb_recursive(const char *fpath, const struct stat *sb,
int tflag, struct FTW *ftwbuf){
if (chown(fpath, recursive_uid, recursive_gid) == -1) {