diff options
author | Jim Meyering <jim@meyering.net> | 2003-12-20 16:41:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-12-20 16:41:54 +0000 |
commit | 18c313d5638f29fa2b3288a096b5323795f1af72 (patch) | |
tree | d6d0d459804cc0bc4cc9eb3a1a8a60f3af354f54 /src | |
parent | f4bebc82bb32f5f48218074badc5428f50ced61b (diff) | |
download | coreutils-18c313d5638f29fa2b3288a096b5323795f1af72.tar.xz |
[struct seq]: Change types of members count and alloc
from `int' to `size_t'.
Diffstat (limited to 'src')
-rw-r--r-- | src/join.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/join.c b/src/join.c index b30034ca6..c079c31d1 100644 --- a/src/join.c +++ b/src/join.c @@ -79,8 +79,8 @@ struct line same join field value. */ struct seq { - int count; /* Elements used in `lines'. */ - int alloc; /* Elements allocated in `lines'. */ + size_t count; /* Elements used in `lines'. */ + size_t alloc; /* Elements allocated in `lines'. */ struct line *lines; }; |