diff options
author | gabor <gabor@FreeBSD.org> | 2012-11-01 11:38:34 +0000 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2012-11-01 11:38:34 +0000 |
commit | 40317d46a3d1b2d77332ff19d4abff62a06f8334 (patch) | |
tree | 8ffc962dccbdf41ba2c4d9c12989e3a8a4a57319 /usr.bin/sort/file.h | |
parent | 4be8d9368b2752c5c873a42e74731566ce1d37fe (diff) | |
download | FreeBSD-src-40317d46a3d1b2d77332ff19d4abff62a06f8334.zip FreeBSD-src-40317d46a3d1b2d77332ff19d4abff62a06f8334.tar.gz |
- Portability changes for ARM
- Allow larger sort memory on 64-bit platforms
Submitted by: Oleg Moskalenko <oleg.moskalenko@citrix.com>
Diffstat (limited to 'usr.bin/sort/file.h')
-rw-r--r-- | usr.bin/sort/file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sort/file.h b/usr.bin/sort/file.h index ac3f4dd..8e95fdb 100644 --- a/usr.bin/sort/file.h +++ b/usr.bin/sort/file.h @@ -65,8 +65,8 @@ struct file_reader; struct file_list { char **fns; - int count; - int sz; + size_t count; + size_t sz; bool tmp; }; |