]> granicus.if.org Git - transmission/commitdiff
fix a handful of CL warnings & errors in libtransmission. mikedld
authorJordan Lee <jordan@transmissionbt.com>
Sun, 8 Sep 2013 17:58:14 +0000 (17:58 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Sun, 8 Sep 2013 17:58:14 +0000 (17:58 +0000)
libtransmission/quark.h
libtransmission/rpcimpl.c
libtransmission/tr-lpd.c

index d84268d10fae96b2a95b5513a7f68020b33b071e..87ba0d1900563c28a5290bf858528f19f317eecb 100644 (file)
@@ -414,7 +414,7 @@ bool tr_quark_lookup (const void * str, size_t len, tr_quark * setme);
 /**
  * Get the string that corresponds to the specified quark
  */
-const char * tr_quark_get_string (const tr_quark quark, size_t * len);
+const char * tr_quark_get_string (tr_quark quark, size_t * len);
 
 /**
  * Create a new quark for the specified string. If a quark already
index 10d3c78fe6222d57e7c9012d0a8f8bc93c8959ac..85d8951d367d03aba3f51fe710e972fcd3d19555 100644 (file)
@@ -900,8 +900,8 @@ addInfo (tr_torrent * tor, tr_variant * d, tr_variant * fields)
   if (n > 0)
     {
       int i;
-      const tr_info const * inf = tr_torrentInfo (tor);
-      const tr_stat const * st = tr_torrentStat ((tr_torrent*)tor);
+      const tr_info * const inf = tr_torrentInfo (tor);
+      const tr_stat * const st = tr_torrentStat ((tr_torrent*)tor);
 
       for (i=0; i<n; ++i)
         {
index aeeb2d618265cf9a263d227dedbe9f28d37a139e..90a74036cd4e919327f9bf94d2a2c42e8908e919 100644 (file)
@@ -216,7 +216,7 @@ static int lpd_extractParam (const char* const str, const char* const name, int
 {
     /* configure maximum length of search string here */
     enum { maxLength = 30 };
-    char sstr[maxLength] = { };
+    char sstr[maxLength] = { };
     const char* pos;
 
     assert (str != NULL && name != NULL);
@@ -445,7 +445,7 @@ tr_lpdSendAnnounce (const tr_torrent* t)
         CRLF;
 
     char hashString[lengthof (t->info.hashString)];
-    char query[lpd_maxDatagramLength + 1] = { };
+    char query[lpd_maxDatagramLength + 1] = { };
 
     if (t == NULL)
         return false;
@@ -499,8 +499,8 @@ static int tr_lpdConsiderAnnounce (tr_pex* peer, const char* const msg)
     };
 
     struct lpd_protocolVersion ver = { -1, -1 };
-    char value[maxValueLen] = { };
-    char hashString[maxHashLen] = { };
+    char value[maxValueLen] = { };
+    char hashString[maxHashLen] = { };
     int res = 0, peerPort = 0;
 
     if (peer != NULL && msg != NULL)
@@ -644,7 +644,7 @@ static void event_callback (evutil_socket_t s UNUSED, short type, void* ignore U
         int addrLen = sizeof foreignAddr;
 
         /* be paranoid enough about zero terminating the foreign string */
-        char foreignMsg[lpd_maxDatagramLength + 1] = { };
+        char foreignMsg[lpd_maxDatagramLength + 1] = { };
 
         /* process local announcement from foreign peer */
         int res = recvfrom (lpd_socket, foreignMsg, lpd_maxDatagramLength,