summaryrefslogtreecommitdiff
path: root/src/temp
diff options
context:
space:
mode:
Diffstat (limited to 'src/temp')
-rw-r--r--src/temp/mktemp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/temp/mktemp.c b/src/temp/mktemp.c
index ed2c103e..de0f3709 100644
--- a/src/temp/mktemp.c
+++ b/src/temp/mktemp.c
@@ -10,7 +10,6 @@ char *__mktemp(char *template)
{
size_t l = strlen(template);
int retries = 10000;
- unsigned long r;
if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
errno = EINVAL;