aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-08 16:48:10 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-08 16:48:10 +0000
commit0f3caa49abab25613b9adb60427929882a17eabc (patch)
tree26dcca19169fe2fde7b4bc3136ab81007f8f5be6 /src/statistics
parentc82072eaae70a10f46dfc448e9aefd80cde2ae45 (diff)
downloadgnunet-0f3caa49abab25613b9adb60427929882a17eabc.tar.gz
gnunet-0f3caa49abab25613b9adb60427929882a17eabc.zip
-fix shifting issues
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/statistics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statistics/statistics.h b/src/statistics/statistics.h
index ac88aadef..41863a64f 100644
--- a/src/statistics/statistics.h
+++ b/src/statistics/statistics.h
@@ -63,7 +63,7 @@ struct GNUNET_STATISTICS_ReplyMessage
63 * Flag for the `struct GNUNET_STATISTICS_ReplyMessage` UID only. 63 * Flag for the `struct GNUNET_STATISTICS_ReplyMessage` UID only.
64 * Note that other messages use #GNUNET_STATISTICS_SETFLAG_PERSISTENT. 64 * Note that other messages use #GNUNET_STATISTICS_SETFLAG_PERSISTENT.
65 */ 65 */
66#define GNUNET_STATISTICS_PERSIST_BIT (1<<31) 66#define GNUNET_STATISTICS_PERSIST_BIT ((uint32_t) (1LLU<<31))
67 67
68/** 68/**
69 * The value being set is an absolute change. 69 * The value being set is an absolute change.