Be a bit more consistent and use uint8_t instead of unsigned char

This commit is contained in:
sin 2013-11-22 14:14:08 +00:00
parent abd5a0e573
commit 38ca9a24c2
1 changed files with 1 additions and 1 deletions

View File

@ -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);