aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Shepard <andrea@torproject.org>2013-08-02 18:49:57 -0700
committerAndrea Shepard <andrea@torproject.org>2013-08-02 18:49:57 -0700
commit468e44a0efaae8761d236042b80ac0125884980d (patch)
treea6679f9e636b17fb5b651b099d99137f84c80932
parent9ac0a681ced764b34ee1d926f077f3dd988a8562 (diff)
downloadtor-468e44a0efaae8761d236042b80ac0125884980d.tar.gz
tor-468e44a0efaae8761d236042b80ac0125884980d.zip
Fix tor_get_lines_from_handle() for make check-spaces
-rw-r--r--src/common/util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c
index fc247acbeb..ed6cd7831a 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -4568,7 +4568,8 @@ log_from_handle(HANDLE *pipe, int severity)
* <b>handle</b>. Return NULL on error, and set
* <b>stream_status_out</b> appropriately. */
MOCK_IMPL(smartlist_t *,
-tor_get_lines_from_handle,(FILE *handle, enum stream_status *stream_status_out))
+tor_get_lines_from_handle, (FILE *handle,
+ enum stream_status *stream_status_out))
{
enum stream_status stream_status;
char stdout_buf[400];