gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r5576 - GNUnet/src/applications/dht/tools


From: gnunet
Subject: [GNUnet-SVN] r5576 - GNUnet/src/applications/dht/tools
Date: Fri, 31 Aug 2007 14:31:52 -0600 (MDT)

Author: grothoff
Date: 2007-08-31 14:31:52 -0600 (Fri, 31 Aug 2007)
New Revision: 5576

Modified:
   GNUnet/src/applications/dht/tools/dht-query.c
Log:
From: 
Heikki Lindholm <address@hidden>
  To: 
Christian Grothoff <address@hidden>
  Date: 
Today 02:07:30 pm
   
Fix a trivial warning reported by OS X gcc.

-- hl


Modified: GNUnet/src/applications/dht/tools/dht-query.c
===================================================================
--- GNUnet/src/applications/dht/tools/dht-query.c       2007-08-31 20:31:06 UTC 
(rev 5575)
+++ GNUnet/src/applications/dht/tools/dht-query.c       2007-08-31 20:31:52 UTC 
(rev 5576)
@@ -72,7 +72,8 @@
   printf ("%s(%s): '%.*s'\n",
           "get",
           key,
-          ntohl (data->size) - sizeof (DataContainer), (char *) &data[1]);
+          (int) (ntohl (data->size) - sizeof (DataContainer)),
+          (char *) &data[1]);
   return OK;
 }
 





reply via email to

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