[tor-commits] [tor/master] Fix a compile warning in config.c reported by sebastian
nickm at torproject.org
nickm at torproject.org
Wed Jul 20 00:44:03 UTC 2011
commit 1017322b59c5c722b1db4e2f040db5cceb41dea9
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Jul 19 14:04:55 2011 -0400
Fix a compile warning in config.c reported by sebastian
---
src/or/config.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c
index cc1561b..efee014 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -5057,8 +5057,8 @@ parse_client_port_config(smartlist_t *out,
if (elt_sl_idx == 0)
continue; /* Skip addr:port */
if (!strcasecmpstart(elt, "SessionGroup=")) {
- int group = tor_parse_long(elt+strlen("SessionGroup="),
- 10, 0, INT_MAX, &ok, NULL);
+ int group = (int)tor_parse_long(elt+strlen("SessionGroup="),
+ 10, 0, INT_MAX, &ok, NULL);
if (!ok) {
log_warn(LD_CONFIG, "Invalid %sPort option '%s'",
portname, escaped(elt));
More information about the tor-commits
mailing list