aboutsummaryrefslogtreecommitdiffstats
path: root/common/mkdtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/mkdtemp.c')
-rw-r--r--common/mkdtemp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/mkdtemp.c b/common/mkdtemp.c
index 9b76f8957..5347b9cb4 100644
--- a/common/mkdtemp.c
+++ b/common/mkdtemp.c
@@ -38,7 +38,7 @@
char *mkdtemp(char *template)
{
int attempts,idx,count=0;
- byte *ch;
+ unsigned char *ch;
idx=strlen(template);
@@ -62,7 +62,7 @@ char *mkdtemp(char *template)
{
int remaining=count;
char *marker=ch;
- byte *randombits;
+ unsigned char *randombits;
idx=0;