Fix a compile warning on OS X 10.6 and up

This commit is contained in:
Sebastian Hahn
2011-10-11 02:25:00 +02:00
parent 6a673ad313
commit cce85c819b
+3 -1
View File
@@ -3894,7 +3894,9 @@ get_string_from_pipe(FILE *stream, char *buf_out, size_t count)
char *retval;
size_t len;
retval = fgets(buf_out, count, stream);
tor_assert(count <= INT_MAX);
retval = fgets(buf_out, (int)count, stream);
if (!retval) {
if (feof(stream)) {