summaryrefslogtreecommitdiff
path: root/gunzip.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-21 21:52:25 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-21 21:52:25 +0000
commit851895ab80341f80398b93c9ad4aa20fcf463730 (patch)
tree53abdf274e7255fef7cf3008fcd341f946fdadbe /gunzip.c
parent1ca20a77476fb69e2472080ef6ba23c8c0ad12ad (diff)
downloadbusybox-w32-851895ab80341f80398b93c9ad4aa20fcf463730.tar.gz
busybox-w32-851895ab80341f80398b93c9ad4aa20fcf463730.tar.bz2
busybox-w32-851895ab80341f80398b93c9ad4aa20fcf463730.zip
Clean up more local vars which shadow globals
-Erik
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gunzip.c b/gunzip.c
index 8100003ec..5c97fac07 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -370,7 +370,7 @@ unsigned n; /* number of bytes in s[] */
370 register ulg c; /* temporary variable */ 370 register ulg c; /* temporary variable */
371 static unsigned long crc_32_tab[256]; 371 static unsigned long crc_32_tab[256];
372 if (crc_table_empty) { 372 if (crc_table_empty) {
373 unsigned long c; /* crc shift register */ 373 unsigned long csr; /* crc shift register */
374 unsigned long e; /* polynomial exclusive-or pattern */ 374 unsigned long e; /* polynomial exclusive-or pattern */
375 int i; /* counter for all possible eight bit values */ 375 int i; /* counter for all possible eight bit values */
376 int k; /* byte being shifted into crc apparatus */ 376 int k; /* byte being shifted into crc apparatus */
@@ -386,13 +386,13 @@ unsigned n; /* number of bytes in s[] */
386 /* Compute and print table of CRC's, five per line */ 386 /* Compute and print table of CRC's, five per line */
387 crc_32_tab[0] = 0x00000000L; 387 crc_32_tab[0] = 0x00000000L;
388 for (i = 1; i < 256; i++) { 388 for (i = 1; i < 256; i++) {
389 c = i; 389 csr = i;
390 /* The idea to initialize the register with the byte instead of 390 /* The idea to initialize the register with the byte instead of
391 * zero was stolen from Haruhiko Okumura's ar002 391 * zero was stolen from Haruhiko Okumura's ar002
392 */ 392 */
393 for (k = 8; k; k--) 393 for (k = 8; k; k--)
394 c = c & 1 ? (c >> 1) ^ e : c >> 1; 394 csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
395 crc_32_tab[i]=c; 395 crc_32_tab[i]=csr;
396 } 396 }
397 } 397 }
398 398