diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-02-21 21:15:31 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-02-21 21:15:31 +0000 |
commit | daefbfe691fdc1856fd7ff91e50cd3600140359b (patch) | |
tree | 2daf6085e1b86c80f138fef4ef8df244448d5b8e /src/or/buffers.c | |
parent | e790dbe779de620bdb0b2f52d4d04ce84bb7c5a8 (diff) | |
download | tor-daefbfe691fdc1856fd7ff91e50cd3600140359b.tar.gz tor-daefbfe691fdc1856fd7ff91e50cd3600140359b.zip |
r14371@tombo: nickm | 2008-02-21 16:13:18 -0500
Fix all -Wshorten-64-to-32 warnings that appear on my macbook.
svn:r13662
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r-- | src/or/buffers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index 7a5fa6e946..a5732253be 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -998,7 +998,7 @@ move_buf_to_buf(buf_t *buf_out, buf_t *buf_in, size_t *buf_flushlen) /** Internal structure: represents a position in a buffer. */ typedef struct buf_pos_t { const chunk_t *chunk; /**< Which chunk are we pointing to? */ - off_t pos;/**< Which character inside the chunk's data are we pointing to? */ + int pos;/**< Which character inside the chunk's data are we pointing to? */ size_t chunk_pos; /**< Total length of all previous chunks. */ } buf_pos_t; @@ -1037,7 +1037,7 @@ buf_find_pos_of_char(char ch, buf_pos_t *out) } pos = out->pos; for (chunk = out->chunk; chunk; chunk = chunk->next) { - char *cp = memchr(chunk->data+pos, ch, chunk->datalen-pos); + char *cp = memchr(chunk->data+pos, ch, chunk->datalen - pos); if (cp) { out->chunk = chunk; out->pos = cp - chunk->data; |