From f1f0fba630155704558c6aecff7ca100b5970be5 Mon Sep 17 00:00:00 2001 From: sin Date: Sat, 30 Nov 2013 21:11:19 +0000 Subject: [PATCH] Forgot to remove argc from function decl Thanks FRIGN for noticing this. --- crypt.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypt.h b/crypt.h index 197191f..7242cdf 100644 --- a/crypt.h +++ b/crypt.h @@ -6,7 +6,6 @@ struct crypt_ops { void *s; }; -int cryptmain(int argc, char **, - struct crypt_ops *, uint8_t *, size_t); +int cryptmain(int, char **, struct crypt_ops *, uint8_t *, size_t); int cryptsum(struct crypt_ops *, FILE *, const char *, uint8_t *); void mdprint(const uint8_t *, const char *, size_t);