mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08:00
memdebug: fix compilation failure
.... 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]
This commit is contained in:
parent
8589e1fe30
commit
945919db5b
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user