gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] 01/02: fix compiler warning about redundant GNUNET


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 01/02: fix compiler warning about redundant GNUNET_PACKED
Date: Thu, 01 Nov 2018 18:01:49 +0100

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

grothoff pushed a commit to branch master
in repository gnunet.

commit a44ac13df59787a77fcdba5e46f3639f8d95460e
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu Nov 1 17:59:27 2018 +0100

    fix compiler warning about redundant GNUNET_PACKED
---
 src/transport/transport.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/transport/transport.h b/src/transport/transport.h
index ec373286d..e68536bcc 100644
--- a/src/transport/transport.h
+++ b/src/transport/transport.h
@@ -726,7 +726,7 @@ struct GNUNET_TRANSPORT_IncomingMessage
   /**
    * Sender identifier.
    */
-  struct GNUNET_PeerIdentity sender GNUNET_PACKED;
+  struct GNUNET_PeerIdentity sender;
 
   /* followed by the message */
 };
@@ -757,7 +757,7 @@ struct GNUNET_TRANSPORT_IncomingMessageAck
   /**
    * Sender identifier of the original message.
    */
-  struct GNUNET_PeerIdentity sender GNUNET_PACKED;
+  struct GNUNET_PeerIdentity sender;
 
 };
 
@@ -781,7 +781,7 @@ struct GNUNET_TRANSPORT_AddQueueMessage
   /**
    * Receiver that can be addressed via the queue.
    */
-  struct GNUNET_PeerIdentity receiver GNUNET_PACKED;
+  struct GNUNET_PeerIdentity receiver;
 
   /**
    * An `enum GNUNET_ATS_Network_Type` in NBO.
@@ -811,7 +811,7 @@ struct GNUNET_TRANSPORT_DelQueueMessage
   /**
    * Receiver that can be addressed via the queue.
    */
-  struct GNUNET_PeerIdentity receiver GNUNET_PACKED;
+  struct GNUNET_PeerIdentity receiver;
 
 };
 
@@ -835,7 +835,7 @@ struct GNUNET_TRANSPORT_CreateQueue
   /**
    * Receiver that can be addressed via the queue.
    */
-  struct GNUNET_PeerIdentity receiver GNUNET_PACKED;
+  struct GNUNET_PeerIdentity receiver;
 
   /* followed by UTF-8 encoded, 0-terminated human-readable address */
 };
@@ -865,7 +865,7 @@ struct GNUNET_TRANSPORT_SendMessageTo
   /**
    * Receiver identifier.
    */
-  struct GNUNET_PeerIdentity receiver GNUNET_PACKED;
+  struct GNUNET_PeerIdentity receiver;
 
   /* followed by the message */
 };
@@ -895,7 +895,7 @@ struct GNUNET_TRANSPORT_SendMessageToAck
   /**
    * Receiver identifier.
    */
-  struct GNUNET_PeerIdentity receiver GNUNET_PACKED;
+  struct GNUNET_PeerIdentity receiver;
 
 };
 

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



reply via email to

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