aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-10-27 09:50:56 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-10-27 09:50:56 +0000
commit4fc6957210ad1baa9d267cdd2b37e4b2f5b96b2a (patch)
treea8326ccfe84160cf809b43383976079907c702df /src
parentba9ef31948175e08469403cfd8840db7efe5886f (diff)
downloadgnunet-4fc6957210ad1baa9d267cdd2b37e4b2f5b96b2a.tar.gz
gnunet-4fc6957210ad1baa9d267cdd2b37e4b2f5b96b2a.zip
Refactoring gnunet time
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_time_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_time_lib.h b/src/include/gnunet_time_lib.h
index aa4e8d5db..baebac927 100644
--- a/src/include/gnunet_time_lib.h
+++ b/src/include/gnunet_time_lib.h
@@ -46,7 +46,7 @@ struct GNUNET_TIME_Absolute
46 /** 46 /**
47 * The actual value. 47 * The actual value.
48 */ 48 */
49 uint64_t value; 49 uint64_t abs_value;
50}; 50};
51 51
52/** 52/**
@@ -58,7 +58,7 @@ struct GNUNET_TIME_Relative
58 /** 58 /**
59 * The actual value. 59 * The actual value.
60 */ 60 */
61 uint64_t value; 61 uint64_t rel_value;
62}; 62};
63 63
64 64