From 38ca9a24c2a6e69c8e933e4998fa064fac5946b6 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 22 Nov 2013 14:14:08 +0000 Subject: [PATCH] Be a bit more consistent and use uint8_t instead of unsigned char --- util/crypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crypt.c b/util/crypt.c index a930081..ca0e258 100644 --- a/util/crypt.c +++ b/util/crypt.c @@ -31,7 +31,7 @@ int cryptsum(struct crypt_ops *ops, FILE *fp, const char *f, uint8_t *md) { - unsigned char buf[BUFSIZ]; + uint8_t buf[BUFSIZ]; size_t n; ops->init(ops->s);