sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 38ca9a24c2a6e69c8e933e4998fa064fac5946b6
parent abd5a0e573ccfe994d9df84081b328968cc8af9c
Author: sin <sin@2f30.org>
Date:   Fri, 22 Nov 2013 14:14:08 +0000

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

Diffstat:
Mutil/crypt.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);