diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-07-26 20:26:53 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-07-26 20:26:53 +0000 |
commit | 189bc7cf9fc7b5231f24721226dae87943cf12fe (patch) | |
tree | a0f9df41c852045ac3234b54d690dd05ba58832e /src/or/circuitbuild.c | |
parent | 7f3e2378b64f07f1bcebf80f7846a6580c29786a (diff) | |
download | tor-189bc7cf9fc7b5231f24721226dae87943cf12fe.tar.gz tor-189bc7cf9fc7b5231f24721226dae87943cf12fe.zip |
r13920@catbus: nickm | 2007-07-26 16:25:25 -0400
whitespace fixes
svn:r10935
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 8f2e4ed747..83f4a50a1a 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1073,7 +1073,7 @@ circuit_get_unhandled_ports(time_t now) for (i = 0; i < smartlist_len(source); ++i) { /*XXXX020 some of these are leaked somewhere.. fix that. */ - tmp = tor_malloc(sizeof(uint16_t)); + tmp = tor_malloc(sizeof(uint16_t)); memcpy(tmp, smartlist_get(source, i), sizeof(uint16_t)); smartlist_add(dest, tmp); } |