Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sign the parameters
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 16 Feb 2017 10:49:36 +0000 (11:49 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 16 Feb 2017 10:49:36 +0000 (11:49 +0100)
examples/msg/app-bittorrent/peer.c

index 5555e86..b7d360f 100644 (file)
@@ -17,8 +17,8 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_peers, "Messages specific for the peers");
  * User parameters for transferred file data. For the test, the default values are :
  * File size: 10 pieces * 5 blocks/piece * 16384 bytes/block = 819200 bytes
  */
-#define FILE_PIECES  10
-#define PIECES_BLOCKS 5
+#define FILE_PIECES  10U
+#define PIECES_BLOCKS 5U
 #define BLOCK_SIZE  16384
 static const unsigned long int FILE_SIZE = FILE_PIECES * PIECES_BLOCKS * BLOCK_SIZE;