gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 161/254: memdebug: fix compilation failure


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 161/254: memdebug: fix compilation failure
Date: Sat, 17 Jun 2017 16:53:13 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit 945919db5b42f40a174598ba73e54b775bf85faf
Author: Kamil Dudka <address@hidden>
AuthorDate: Mon May 22 19:00:15 2017 +0200

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

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]