commit | ed20346f0b81d1d89c22c9616abe8e47b4c17f08 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jun 16 11:19:22 2004 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jun 16 11:19:22 2004 +0000 |
tree | 249992fe05850523ab4ed4bc8f66effc8a3251b9 | |
parent | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c [diff] [blame] |
Various changes
diff --git a/src/structs.h b/src/structs.h index ac0a795..0edd729 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -56,7 +56,7 @@ { int ga_len; /* current number of items used */ int ga_room; /* number of unused items at the end */ - int ga_itemsize; /* sizeof one item */ + int ga_itemsize; /* sizeof(item) */ int ga_growsize; /* number of items to grow each time */ void *ga_data; /* pointer to the first item */ } garray_T;