From ba35564fac5cf46b6c319782e7982ea2cd4bc1b0 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Sun, 4 May 2014 14:57:41 +0000 Subject: Fixed hidden type. --- src/htssafe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htssafe.h b/src/htssafe.h index c260176..33a3490 100644 --- a/src/htssafe.h +++ b/src/htssafe.h @@ -117,7 +117,7 @@ static HTS_UNUSED void abortf_(const char *exp, const char *file, int line) { * If "A" is a char[] variable whose size is not sizeof(char*), then the size * is assumed to be the capacity of this array. */ -#define strcpybuff(A, B) strcatbuff(clear_buffer_(A), B) +#define strcpybuff(A, B) (clear_buffer_(A), strcatbuff(A, B)) static HTS_INLINE HTS_UNUSED size_t strlen_safe_(const char *source, const size_t sizeof_source, const char *file, int line) { -- cgit v1.2.3