mirror of
https://github.com/curl/curl.git
synced 2026-07-16 02:17:15 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue