aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-06-20 07:32:44 +0000
committerChristian Grothoff <christian@grothoff.org>2011-06-20 07:32:44 +0000
commit96ee07aa3980c1bde3b02d88cb1e0cbcb9633421 (patch)
tree8bf377e543d7c24a93e03b4a101b0da8f2ca3d58 /src/datastore
parent0c1d60fc62aee34d110da6b041f50ca1bba61b5a (diff)
downloadgnunet-96ee07aa3980c1bde3b02d88cb1e0cbcb9633421.tar.gz
gnunet-96ee07aa3980c1bde3b02d88cb1e0cbcb9633421.zip
trying to fix bus error
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/gnunet-service-datastore.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/datastore/gnunet-service-datastore.c b/src/datastore/gnunet-service-datastore.c
index fab403a86..a2cb4af39 100644
--- a/src/datastore/gnunet-service-datastore.c
+++ b/src/datastore/gnunet-service-datastore.c
@@ -840,7 +840,7 @@ check_data (const struct GNUNET_MessageHeader *message)
840 840
841 841
842/** 842/**
843 * Context for a put request used to see if the content is 843 * Context for a PUT request used to see if the content is
844 * already present. 844 * already present.
845 */ 845 */
846struct PutContext 846struct PutContext
@@ -849,6 +849,10 @@ struct PutContext
849 * Client to notify on completion. 849 * Client to notify on completion.
850 */ 850 */
851 struct GNUNET_SERVER_Client *client; 851 struct GNUNET_SERVER_Client *client;
852
853#if ! HAVE_UNALIGNED_64_ACCESS
854 void *reserved;
855#endif
852 856
853 /* followed by the 'struct DataMessage' */ 857 /* followed by the 'struct DataMessage' */
854}; 858};