summaryrefslogtreecommitdiff
path: root/source4/lib/xfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/xfile.c')
-rw-r--r--source4/lib/xfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/xfile.c b/source4/lib/xfile.c
index 1534dd855e..de4cf4b12a 100644
--- a/source4/lib/xfile.c
+++ b/source4/lib/xfile.c
@@ -306,7 +306,7 @@ int x_fgetc(XFILE *f)
return EOF;
}
- ret = *(unsigned char *)(f->next);
+ ret = *(uint8_t *)(f->next);
f->next++;
f->bufused--;
return ret;