commit f1f0fba630155704558c6aecff7ca100b5970be5
parent 38ca9a24c2a6e69c8e933e4998fa064fac5946b6
Author: sin <sin@2f30.org>
Date: Sat, 30 Nov 2013 21:11:19 +0000
Forgot to remove argc from function decl
Thanks FRIGN for noticing this.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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);