gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 129/208: smb: rename variable to fix shadowing warn


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 129/208: smb: rename variable to fix shadowing warning
Date: Wed, 09 Aug 2017 17:35:26 +0200

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

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

commit 59a0fb24390bc9387d3404e5f3dcde33bf80dffa
Author: Marcel Raad <address@hidden>
AuthorDate: Sat Jul 8 23:19:36 2017 +0200

    smb: rename variable to fix shadowing warning
    
    GCC 4.6.3 on travis complains:
    smb.c: In function ‘get_posix_time’:
    smb.c:725:13: error: declaration of ‘time’ shadows a global declaration
    [-Werror=shadow]
    
    Fix this by renaming the variable.
---
 lib/smb.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/smb.c b/lib/smb.c
index 8ae4303b0..13dfd514b 100644
--- a/lib/smb.c
+++ b/lib/smb.c
@@ -722,14 +722,14 @@ static CURLcode smb_connection_state(struct connectdata 
*conn, bool *done)
 static void get_posix_time(long *_out, const void *_in)
 {
 #ifdef HAVE_LONGLONG
-  long long time = *(long long *) _in;
+  long long timestamp = *(long long *) _in;
 #else
-  unsigned __int64 time = *(unsigned __int64 *) _in;
+  unsigned __int64 timestamp = *(unsigned __int64 *) _in;
 #endif
 
-  time -= 116444736000000000ULL;
-  time /= 10000000;
-  *_out = (long) time;
+  timestamp -= 116444736000000000ULL;
+  timestamp /= 10000000;
+  *_out = (long) timestamp;
 }
 
 static CURLcode smb_request_state(struct connectdata *conn, bool *done)

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



reply via email to

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