diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-09 16:43:48 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-09 16:43:48 +0000 |
commit | b331963ba68c46c2370c7ab8a531f3a8d85c1c8d (patch) | |
tree | 2ffd01f0ac8763d67f31db6b239defa39495d07d /src/httrack-library.h | |
parent | f48114006deced315348925ba36af3cb6a022324 (diff) |
assert cleanup.
Diffstat (limited to 'src/httrack-library.h')
-rw-r--r-- | src/httrack-library.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httrack-library.h b/src/httrack-library.h index 6d65cd7..21ff79c 100644 --- a/src/httrack-library.h +++ b/src/httrack-library.h @@ -309,7 +309,7 @@ typedef struct utimbuf STRUCT_UTIMBUF; /** Macro aimed to break at compile-time if a size is not a sizeof() strictly * greater than sizeof(char*). **/ #undef RUNTIME_TIME_CHECK_SIZE -#define RUNTIME_TIME_CHECK_SIZE(A) assert((A) != sizeof(void*)) +#define RUNTIME_TIME_CHECK_SIZE(A) assertf((A) != sizeof(void*)) #define fconv(A,B,C) (COMPILE_TIME_CHECK_SIZE(B), fconv(A,B,C)) #define concat(A,B,C,D) (COMPILE_TIME_CHECK_SIZE(B), concat(A,B,C,D)) |