mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05: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…
Reference in New Issue
Block a user