diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-04-08 03:26:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-04-08 03:26:23 +0000 |
commit | c6769a80fb7e67580c9fd905e98a417941ebdb59 (patch) | |
tree | 4448e47e6c34b4ebbb07320821f754a5c3ff52a7 /src | |
parent | 6face4f4820107cee4a72538abcef9d547f594d9 (diff) | |
download | tor-c6769a80fb7e67580c9fd905e98a417941ebdb59.tar tor-c6769a80fb7e67580c9fd905e98a417941ebdb59.tar.gz |
Fixs a signed/unsigned comparison
svn:r4055
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 8206b9520..af54ae90d 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -159,7 +159,7 @@ circuit_state_to_string(int state) { case CIRCUIT_STATE_OPEN: return "open"; default: log_fn(LOG_WARN, "Bug: unknown circuit state %d", state); - tor_snprintf(buf, sizeof(buf), "unknown state [%d], state"); + tor_snprintf(buf, sizeof(buf), "unknown state [%d]", state); return buf; } } |