aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_plugins.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/gnunet-service-ats_plugins.c')
-rw-r--r--src/ats/gnunet-service-ats_plugins.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ats/gnunet-service-ats_plugins.c b/src/ats/gnunet-service-ats_plugins.c
index a753d6a8c..c2388e28b 100644
--- a/src/ats/gnunet-service-ats_plugins.c
+++ b/src/ats/gnunet-service-ats_plugins.c
@@ -132,8 +132,7 @@ solver_info_cb (void *cls,
132 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 132 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
133 "Solver notifies `%s' with result `%s'\n", 133 "Solver notifies `%s' with result `%s'\n",
134 "GAS_OP_SOLVE_STOP", 134 "GAS_OP_SOLVE_STOP",
135 (GAS_STAT_SUCCESS == status) ? "SUCCESS" : "FAIL", 135 (GAS_STAT_SUCCESS == status) ? "SUCCESS" : "FAIL");
136 add_info);
137 return; 136 return;
138 case GAS_OP_SOLVE_SETUP_START: 137 case GAS_OP_SOLVE_SETUP_START:
139 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 138 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
@@ -306,7 +305,7 @@ parse_quota (const char *quota_str,
306 direction, 305 direction,
307 GNUNET_ATS_print_network_type (network), 306 GNUNET_ATS_print_network_type (network),
308 quota_str, 307 quota_str,
309 GNUNET_ATS_DefaultBandwidth); 308 (unsigned long long) GNUNET_ATS_DefaultBandwidth);
310 ret = GNUNET_ATS_DefaultBandwidth; 309 ret = GNUNET_ATS_DefaultBandwidth;
311 } 310 }
312 else 311 else
@@ -360,7 +359,7 @@ load_quota (const struct GNUNET_CONFIGURATION_Handle *cfg,
360 _("No %s-quota configured for network `%s', assigning default bandwidth %llu\n"), 359 _("No %s-quota configured for network `%s', assigning default bandwidth %llu\n"),
361 direction, 360 direction,
362 GNUNET_ATS_print_network_type (type), 361 GNUNET_ATS_print_network_type (type),
363 GNUNET_ATS_DefaultBandwidth); 362 (unsigned long long) GNUNET_ATS_DefaultBandwidth);
364 ret = GNUNET_ATS_DefaultBandwidth; 363 ret = GNUNET_ATS_DefaultBandwidth;
365 } 364 }
366 GNUNET_free (entry); 365 GNUNET_free (entry);