pkcs15-tool: Fix compiler warning

pkcs15-tool.c:1201:5: warning: no previous prototype for ‘unlink_cb’ [-Wmissing-prototypes]
 int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
     ^~~~~~~~~
This commit is contained in:
Ludovic Rousseau 2016-10-14 17:35:00 +02:00
parent 8b761b830b
commit fad79ac2c3
1 changed files with 1 additions and 1 deletions

View File

@ -1198,7 +1198,7 @@ static int clear_cache(void)
#else
int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
static int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
{
int r = remove(fpath);
if (r)