diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-07-16 11:10:14 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-07-16 11:10:14 -0400 |
commit | b5cfcb2045262a3ce9485c4d5a0c91b89174e539 (patch) | |
tree | 9c4fb362b6b08f4acb5377e5fc4dd5ac53acf4d5 /src/common/util.c | |
parent | 8cb50703761affb496f2035768e0f024d9263938 (diff) | |
download | tor-b5cfcb2045262a3ce9485c4d5a0c91b89174e539.tar.gz tor-b5cfcb2045262a3ce9485c4d5a0c91b89174e539.zip |
Fix most check-spaces issues
Diffstat (limited to 'src/common/util.c')
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index 1849613512..a5b5488b0a 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -2561,7 +2561,7 @@ read_file_to_str_until_eof(int fd, size_t max_bytes_to_read, size_t *sz_out) size_t string_max = 0; if (max_bytes_to_read+1 >= SIZE_T_CEILING) { - errno = EINVAL; + errno = EINVAL; return NULL; } |