Revert r327934 to fix the log message.

This commit is contained in:
Pedro F. Giffuni 2018-01-13 18:56:42 +00:00
parent a9f41deff6
commit 8c3720bfc1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327937

View File

@ -46,7 +46,7 @@ MALLOC_DECLARE(M_ZSTD);
#define malloc(x) (malloc)((x), M_ZSTD, M_WAITOK)
#define free(x) (free)((x), M_ZSTD)
/* in zstd's use of calloc, a is always 1 */
#define calloc(a,b) (mallocarray)((a), (b), M_ZSTD, M_WAITOK | M_ZERO)
#define calloc(a,b) (malloc)((a)*(b), M_ZSTD, M_WAITOK | M_ZERO)
#endif
#ifdef __cplusplus