diff options
author | Russ Cox <rsc@swtch.com> | 2010-02-22 16:54:58 -0800 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2010-02-22 16:54:58 -0800 |
commit | 8425b514aa027459410a6cbea98799680e33e480 (patch) | |
tree | d3e0eb2db60032c6c26144f0b17ace0ff4b8646a /src/cmd/tapefs | |
parent | 0c6074b6920c8e115944c9c5e79b74e9faad84cb (diff) | |
download | plan9port-8425b514aa027459410a6cbea98799680e33e480.tar.gz plan9port-8425b514aa027459410a6cbea98799680e33e480.tar.bz2 plan9port-8425b514aa027459410a6cbea98799680e33e480.zip |
various: crctab now u32int
R=rsc
http://codereview.appspot.com/220041
Diffstat (limited to 'src/cmd/tapefs')
-rw-r--r-- | src/cmd/tapefs/zipfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/tapefs/zipfs.c b/src/cmd/tapefs/zipfs.c index 5d3c4338..e9354f7b 100644 --- a/src/cmd/tapefs/zipfs.c +++ b/src/cmd/tapefs/zipfs.c @@ -29,7 +29,7 @@ struct Block{ }; static Biobuf *bin; -static ulong *crctab; +static u32int *crctab; static ulong crc; static int findCDir(Biobuf *); |