comparison libtomcrypt/src/headers/tomcrypt_argchk.h @ 1710:1ff2a1034c52

Fix whitespace changes vs upstream libtomcrypt
author Matt Johnston <matt@ucc.asn.au>
date Wed, 10 Jun 2020 23:01:33 +0800
parents 6dba84798cd5
children
comparison
equal deleted inserted replaced
1709:04155ce30759 1710:1ff2a1034c52
43 #define LTC_ARGCHK(x) if (!(x)) { fprintf(stderr, "\nwarning: ARGCHK failed at %s:%d\n", __FILE__, __LINE__); } 43 #define LTC_ARGCHK(x) if (!(x)) { fprintf(stderr, "\nwarning: ARGCHK failed at %s:%d\n", __FILE__, __LINE__); }
44 #define LTC_ARGCHKVD(x) LTC_ARGCHK(x) 44 #define LTC_ARGCHKVD(x) LTC_ARGCHK(x)
45 45
46 #elif ARGTYPE == 3 46 #elif ARGTYPE == 3
47 47
48 #define LTC_ARGCHK(x) 48 #define LTC_ARGCHK(x)
49 #define LTC_ARGCHKVD(x) LTC_ARGCHK(x) 49 #define LTC_ARGCHKVD(x) LTC_ARGCHK(x)
50 50
51 #elif ARGTYPE == 4 51 #elif ARGTYPE == 4
52 52
53 #define LTC_ARGCHK(x) if (!(x)) return CRYPT_INVALID_ARG; 53 #define LTC_ARGCHK(x) if (!(x)) return CRYPT_INVALID_ARG;