aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/perf_datastore_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore/perf_datastore_api.c')
-rw-r--r--src/datastore/perf_datastore_api.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/datastore/perf_datastore_api.c b/src/datastore/perf_datastore_api.c
index 2c261b155..96ec9e924 100644
--- a/src/datastore/perf_datastore_api.c
+++ b/src/datastore/perf_datastore_api.c
@@ -211,7 +211,7 @@ check_success (void *cls,
211 struct CpsRunContext *crc = cls; 211 struct CpsRunContext *crc = cls;
212 212
213#if REPORT_ID 213#if REPORT_ID
214 FPRINTF (stderr, "%s", (GNUNET_OK == success) ? "I" : "i"); 214 fprintf (stderr, "%s", (GNUNET_OK == success) ? "I" : "i");
215#endif 215#endif
216 if (GNUNET_OK != success) 216 if (GNUNET_OK != success)
217 { 217 {
@@ -285,7 +285,7 @@ remove_next (void *cls,
285 return; 285 return;
286 } 286 }
287#if REPORT_ID 287#if REPORT_ID
288 FPRINTF (stderr, "%s", "D"); 288 fprintf (stderr, "%s", "D");
289#endif 289#endif
290 GNUNET_assert (GNUNET_OK == success); 290 GNUNET_assert (GNUNET_OK == success);
291 GNUNET_SCHEDULER_add_now (&run_continuation, 291 GNUNET_SCHEDULER_add_now (&run_continuation,
@@ -528,7 +528,7 @@ run_tests (void *cls,
528 528
529 if (success != GNUNET_YES) 529 if (success != GNUNET_YES)
530 { 530 {
531 FPRINTF (stderr, 531 fprintf (stderr,
532 "Test 'put' operation failed with error `%s' database likely not setup, skipping test.\n", 532 "Test 'put' operation failed with error `%s' database likely not setup, skipping test.\n",
533 msg); 533 msg);
534 GNUNET_DATASTORE_disconnect (datastore, 534 GNUNET_DATASTORE_disconnect (datastore,
@@ -573,7 +573,7 @@ run (void *cls,
573 0, 1, 573 0, 1,
574 &run_tests, crc)) 574 &run_tests, crc))
575 { 575 {
576 FPRINTF (stderr, 576 fprintf (stderr,
577 "%s", 577 "%s",
578 "Test 'put' operation failed.\n"); 578 "Test 'put' operation failed.\n");
579 ok = 1; 579 ok = 1;
@@ -608,7 +608,7 @@ main (int argc,
608 &run, 608 &run,
609 NULL)) 609 NULL))
610 return 1; 610 return 1;
611 FPRINTF (stderr, "%s", "\n"); 611 fprintf (stderr, "%s", "\n");
612 return ok; 612 return ok;
613} 613}
614 614