diff options
-rw-r--r-- | include/linux/seq_buf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index 38770688a627..d14dc9023dde 100644 --- a/include/linux/seq_buf.h +++ b/include/linux/seq_buf.h | |||
@@ -16,10 +16,10 @@ | |||
16 | * @readpos: The next position to read in the buffer. | 16 | * @readpos: The next position to read in the buffer. |
17 | */ | 17 | */ |
18 | struct seq_buf { | 18 | struct seq_buf { |
19 | unsigned char *buffer; | 19 | char *buffer; |
20 | unsigned int size; | 20 | size_t size; |
21 | unsigned int len; | 21 | size_t len; |
22 | unsigned int readpos; | 22 | loff_t readpos; |
23 | }; | 23 | }; |
24 | 24 | ||
25 | static inline void | 25 | static inline void |