summaryrefslogtreecommitdiff
path: root/src/libs6/ftrigw_clean.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs6/ftrigw_clean.c')
-rw-r--r--src/libs6/ftrigw_clean.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs6/ftrigw_clean.c b/src/libs6/ftrigw_clean.c
index 1198828..5e344eb 100644
--- a/src/libs6/ftrigw_clean.c
+++ b/src/libs6/ftrigw_clean.c
@@ -1,5 +1,6 @@
/* ISC license. */
+#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <skalibs/direntry.h>
@@ -10,7 +11,7 @@
int ftrigw_clean (char const *path)
{
- unsigned int pathlen = str_len(path) ;
+ size_t pathlen = str_len(path) ;
int e = 0 ;
DIR *dir = opendir(path) ;
if (!dir) return 0 ;