aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-15 12:56:16 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-15 12:56:16 +0000
commit494e4832ac3f3bcf65146e7ce1e6083c79bfb6a8 (patch)
tree1bbf249221bc544d70737bf7553f32b6a5f56d89 /src
parentfc3f4c3fd168334d80167ab229d3e8e5841a4388 (diff)
downloadgnunet-494e4832ac3f3bcf65146e7ce1e6083c79bfb6a8.tar.gz
gnunet-494e4832ac3f3bcf65146e7ce1e6083c79bfb6a8.zip
- use fitting data type
Diffstat (limited to 'src')
-rw-r--r--src/mesh/mesh_protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/mesh_protocol.h b/src/mesh/mesh_protocol.h
index 6067da908..3bec68796 100644
--- a/src/mesh/mesh_protocol.h
+++ b/src/mesh/mesh_protocol.h
@@ -169,9 +169,9 @@ struct GNUNET_MESH_DataACK
169 /** 169 /**
170 * Bitfield of already-received newer messages // TODO implement and use 170 * Bitfield of already-received newer messages // TODO implement and use
171 * pid + 1 @ LSB 171 * pid + 1 @ LSB
172 * pid + 32 @ MSB 172 * pid + 64 @ MSB
173 */ 173 */
174 uint32_t futures GNUNET_PACKED; 174 uint64_t futures GNUNET_PACKED;
175}; 175};
176 176
177 177