Commit 8e9561ed 8e9561edb1c4abeb76a63f0c69c114d8db6c5dcd by Sergey Poznyakoff

(struct rbuffer.count): Changed type to size_t. Reported by Joseph Caputo <caputo@qedinfo.com>

1 parent d0eaa05c
...@@ -33,7 +33,7 @@ struct rbuffer ...@@ -33,7 +33,7 @@ struct rbuffer
33 { 33 {
34 char *base; 34 char *base;
35 char *ptr; 35 char *ptr;
36 int count; 36 size_t count;
37 size_t bufsiz; 37 size_t bufsiz;
38 off_t offset; 38 off_t offset;
39 }; 39 };
......