[tor-commits] [tor/master] Fix tor_get_lines_from_handle() for make check-spaces
nickm at torproject.org
nickm at torproject.org
Sat Aug 3 02:14:20 UTC 2013
commit 468e44a0efaae8761d236042b80ac0125884980d
Author: Andrea Shepard <andrea at torproject.org>
Date: Fri Aug 2 18:49:57 2013 -0700
Fix tor_get_lines_from_handle() for make check-spaces
---
src/common/util.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/common/util.c b/src/common/util.c
index fc247ac..ed6cd78 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];
More information about the tor-commits
mailing list