summaryrefslogtreecommitdiff
path: root/src/libstddjb/rm_rf_tmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/rm_rf_tmp.c')
-rw-r--r--src/libstddjb/rm_rf_tmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstddjb/rm_rf_tmp.c b/src/libstddjb/rm_rf_tmp.c
index 6e434d7..d1a8b1a 100644
--- a/src/libstddjb/rm_rf_tmp.c
+++ b/src/libstddjb/rm_rf_tmp.c
@@ -1,11 +1,12 @@
/* ISC license. */
+#include <sys/types.h>
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
int rm_rf_tmp (char const *filename, stralloc *tmp)
{
- unsigned int tmpbase = tmp->len ;
+ size_t tmpbase = tmp->len ;
if (!stralloc_cats(tmp, filename)) return -1 ;
if (!stralloc_0(tmp)) goto err ;
if (rm_rf_in_tmp(tmp, tmpbase) == -1) goto err ;