Fix recurse() prototype and convert char to int flags

This commit is contained in:
sin
2015-02-16 16:23:12 +00:00
parent d8fa891008
commit 8f068589fb
11 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@
#include "../util.h"
void
recurse(const char *path, void (*fn)(const char *, char), int follow)
recurse(const char *path, void (*fn)(const char *, int), int follow)
{
char buf[PATH_MAX];
struct dirent *d;