diff options
author | Christian Grothoff <christian@grothoff.org> | 2014-12-18 16:22:14 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2014-12-18 16:22:14 +0000 |
commit | fb12af8319a84389a536ab2f3735daf3b24f11bd (patch) | |
tree | 53e1424149fe8e7d5673e783868fcaa8a6bdbb55 /src/peerstore/perf_peerstore_store.c | |
parent | d19064a18f3fcf35c94d7f56485e41fb3425d066 (diff) |
-use const in peerstore callback
Diffstat (limited to 'src/peerstore/perf_peerstore_store.c')
-rw-r--r-- | src/peerstore/perf_peerstore_store.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/peerstore/perf_peerstore_store.c b/src/peerstore/perf_peerstore_store.c index e97699fe2..ad7c70195 100644 --- a/src/peerstore/perf_peerstore_store.c +++ b/src/peerstore/perf_peerstore_store.c @@ -37,9 +37,9 @@ static struct GNUNET_PeerIdentity p; static char *k = "test_peerstore_stress_key"; static char *v = "test_peerstore_stress_val"; -int count = 0; +static int count = 0; -void +static void disconnect () { if (NULL != h) @@ -48,7 +48,7 @@ disconnect () } -void +static void store () { GNUNET_PEERSTORE_store (h, ss, &p, k, v, strlen (v) + 1, @@ -61,7 +61,9 @@ store () static int -watch_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg) +watch_cb (void *cls, + const struct GNUNET_PEERSTORE_Record *record, + const char *emsg) { GNUNET_assert (NULL == emsg); if (STORES == count) |