X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Ftemp%2Fmktemp.c;h=de0f370947bbc666dfd177ca1355f28efc78f195;hp=ed2c103e776ea4fa84edc3f198b33aec30bfbc4e;hb=3b00675bf51aef47705d8845de24dec8c6063078;hpb=2cc63358cdb0309ca996ffe56ccf402c2f2f16d5 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;