aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-17 17:45:43 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-17 17:45:43 +0200
commit913e08b728cbc8c85cad2751d6837a7c502eb355 (patch)
tree6a7c923e36d075417c471f2c4339cffb2db1ca77
parentbbe0a0501959db1add350cae54b86cbd59d48c77 (diff)
downloadgnunet-913e08b728cbc8c85cad2751d6837a7c502eb355.tar.gz
gnunet-913e08b728cbc8c85cad2751d6837a7c502eb355.zip
remove const
-rw-r--r--src/identity/identity_api.c4
-rw-r--r--src/include/gnunet_identity_service.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/identity/identity_api.c b/src/identity/identity_api.c
index 5d17ac5d5..f7aca1655 100644
--- a/src/identity/identity_api.c
+++ b/src/identity/identity_api.c
@@ -150,9 +150,9 @@ struct GNUNET_IDENTITY_Handle
150/** 150/**
151 * Obtain the ego representing 'anonymous' users. 151 * Obtain the ego representing 'anonymous' users.
152 * 152 *
153 * @return handle for the anonymous user, must not be freed 153 * @return handle for the anonymous user, MUST NOT be freed
154 */ 154 */
155const struct GNUNET_IDENTITY_Ego * 155struct GNUNET_IDENTITY_Ego *
156GNUNET_IDENTITY_ego_get_anonymous () 156GNUNET_IDENTITY_ego_get_anonymous ()
157{ 157{
158 static struct GNUNET_IDENTITY_Ego anon; 158 static struct GNUNET_IDENTITY_Ego anon;
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index f4e653598..94127248e 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -86,9 +86,9 @@ GNUNET_IDENTITY_ego_get_private_key (const struct GNUNET_IDENTITY_Ego *ego);
86/** 86/**
87 * Obtain the ego representing 'anonymous' users. 87 * Obtain the ego representing 'anonymous' users.
88 * 88 *
89 * @return handle for the anonymous user, must not be freed 89 * @return handle for the anonymous user, MUST NOT be freed
90 */ 90 */
91const struct GNUNET_IDENTITY_Ego * 91struct GNUNET_IDENTITY_Ego *
92GNUNET_IDENTITY_ego_get_anonymous (void); 92GNUNET_IDENTITY_ego_get_anonymous (void);
93 93
94 94