]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/crc32.c
Apply patches from jdpotter@google.com, as submitted to NetWatch Maintainer Team...
[netwatch.git] / lib / crc32.c
index 43f9d7a876ad1dee6818f4b85b56f7861d86af4d..a5512f64a4b3603543a8eecd42a3d1bd7267c7de 100644 (file)
@@ -3,7 +3,7 @@
 /* code from http://www.faqs.org/faqs/compression-faq/part1/section-26.html,
  * presumed public domain */
 
-uint32_t crc32_table[256];
+static uint32_t crc32_table[256];
 
 uint32_t crc32(uint8_t *buf, int len, uint32_t crc0)
 {
This page took 0.020851 seconds and 4 git commands to generate.