[llvm-commits] CVS: llvm/lib/Support/bzip2/bzlib.c

Reid Spencer reid at x10sys.com
Wed May 31 14:53:55 PDT 2006



Changes in directory llvm/lib/Support/bzip2:

bzlib.c updated: 1.2 -> 1.3
---
Log message:

Squelch this warning:
/bzlib.c:126: warning: string length `1056' is greater than the length `509' ISO
C89 compilers are required to support


---
Diffs of the changes:  (+4 -0)

 bzlib.c |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/lib/Support/bzip2/bzlib.c
diff -u llvm/lib/Support/bzip2/bzlib.c:1.2 llvm/lib/Support/bzip2/bzlib.c:1.3
--- llvm/lib/Support/bzip2/bzlib.c:1.2	Thu Apr 21 23:08:30 2005
+++ llvm/lib/Support/bzip2/bzlib.c	Wed May 31 16:53:42 2006
@@ -108,6 +108,8 @@
       "memory reads/writes, and so acts (unintendedly) as a stress\n"
       "test of your memory system.\n"
       "\n"
+   );
+   fprintf(stderr,
       "I suggest the following: try compressing the file again,\n"
       "possibly monitoring progress in detail with the -vv flag.\n"
       "\n"
@@ -118,6 +120,8 @@
       "  Memtest86 tests memory much more thorougly than your BIOSs\n"
       "  power-on test, and may find failures that the BIOS doesn't.\n"
       "\n"
+   );
+   fprintf(stderr,
       "* If the error can be repeatably reproduced, this is a bug in\n"
       "  bzip2, and I would very much like to hear about it.  Please\n"
       "  let me know, and, ideally, save a copy of the file causing the\n"






More information about the llvm-commits mailing list