From 945919db5b42f40a174598ba73e54b775bf85faf Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Mon, 22 May 2017 19:00:15 +0200 Subject: memdebug: fix compilation failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .... caused by a typo in the last commit (fixing issue #1504): memdebug.c: In function ‘curl_fclose’: memdebug.c:444:3: error: implicit declaration of function ‘DEBUGDEBUGASSERT’ [-Werror=implicit-function-declaration] --- lib/memdebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/memdebug.c b/lib/memdebug.c index 3ee16c8eb..2b8808ab0 100644 --- a/lib/memdebug.c +++ b/lib/memdebug.c @@ -441,7 +441,7 @@ int curl_fclose(FILE *file, int line, const char *source) { int res; - DEBUGDEBUGASSERT(file != NULL); + DEBUGASSERT(file != NULL); res=fclose(file); -- cgit v1.2.1