aboutsummaryrefslogtreecommitdiffhomepage
path: root/env_universal_common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-01 16:32:52 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-04 11:34:45 -0700
commit8185bee4b83ce94f098cd07a360a0d78ad781c78 (patch)
tree9d93c0c617de4c25e4acd49ff8383ce2a8d84e0c /env_universal_common.h
parent2e1b3325c63cd6c43a10a08acfc54d1fb29a5c03 (diff)
Lots of work towards making fish build without warnings on Mountain Lion, mostly in terms of using size_t instead of int
Diffstat (limited to 'env_universal_common.h')
-rw-r--r--env_universal_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/env_universal_common.h b/env_universal_common.h
index 1cfdd156..14ce77d2 100644
--- a/env_universal_common.h
+++ b/env_universal_common.h
@@ -103,12 +103,12 @@ typedef struct connection
/**
Number of bytes that have already been consumed.
*/
- int buffer_consumed;
+ size_t buffer_consumed;
/**
Number of bytes that have been read into the buffer.
*/
- int buffer_used;
+ size_t buffer_used;
/**