aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_json_lib.h3
-rw-r--r--src/util/perf_crypto_rsa.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/include/gnunet_json_lib.h b/src/include/gnunet_json_lib.h
index 72d2c4ebe..bba994d03 100644
--- a/src/include/gnunet_json_lib.h
+++ b/src/include/gnunet_json_lib.h
@@ -255,8 +255,9 @@ GNUNET_JSON_spec_uint32 (const char *name, uint32_t *u32);
255struct GNUNET_JSON_Specification 255struct GNUNET_JSON_Specification
256GNUNET_JSON_spec_uint64 (const char *name, uint64_t *u64); 256GNUNET_JSON_spec_uint64 (const char *name, uint64_t *u64);
257 257
258
258/** 259/**
259 * Boolean (true mapped to GNUNET_YES, false mapped to GNUNET_NO). 260 * Boolean (true mapped to #GNUNET_YES, false mapped to #GNUNET_NO).
260 * 261 *
261 * @param name name of the JSON field 262 * @param name name of the JSON field
262 * @param[out] boolean where to store the boolean found under @a name 263 * @param[out] boolean where to store the boolean found under @a name
diff --git a/src/util/perf_crypto_rsa.c b/src/util/perf_crypto_rsa.c
index 685389206..1140738f6 100644
--- a/src/util/perf_crypto_rsa.c
+++ b/src/util/perf_crypto_rsa.c
@@ -194,7 +194,7 @@ int
194main (int argc, char *argv[]) 194main (int argc, char *argv[])
195{ 195{
196 eval (1024); 196 eval (1024);
197 /* eval (2048); */ 197 eval (2048);
198 /* eval (4096); */ 198 /* eval (4096); */
199 return 0; 199 return 0;
200} 200}