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:
Kamil Dudka 2017-05-22 19:00:15 +02:00
parent 8589e1fe30
commit 945919db5b
1 changed files with 1 additions and 1 deletions

View File

@ -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);