diff options
author | George Kadianakis <desnacked@gmail.com> | 2011-09-11 23:34:36 +0200 |
---|---|---|
committer | George Kadianakis <desnacked@gmail.com> | 2011-09-11 23:34:36 +0200 |
commit | de7565f87fba14973038fbcd740ff9fecaa28b4e (patch) | |
tree | 29ab349f4b49a7474e450b7806026c428a705175 /src/common/util.c | |
parent | c6811c57cb75b2c594b2a6fffaca0c5ae4c19e0a (diff) | |
download | tor-de7565f87fba14973038fbcd740ff9fecaa28b4e.tar.gz tor-de7565f87fba14973038fbcd740ff9fecaa28b4e.zip |
Make check-spaces happy.
Diffstat (limited to 'src/common/util.c')
-rw-r--r-- | src/common/util.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index 5fc2cbeabc..502840bc3e 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -3193,9 +3193,11 @@ tor_spawn_background(const char *const filename, int *stdout_read, * * Returns: * IO_STREAM_CLOSED: If the stream is closed. - * IO_STREAM_EAGAIN: If there is nothing to read and we should check back later. + * IO_STREAM_EAGAIN: If there is nothing to read and we should check back + * later. * IO_STREAM_TERM: If something is wrong with the stream. - * IO_STREAM_OKAY: If everything went okay and we got a string in <b>buf_out</b>. */ + * IO_STREAM_OKAY: If everything went okay and we got a string + * in <b>buf_out</b>. */ enum stream_status get_string_from_pipe(FILE *stream, char *buf_out, size_t count) { |