]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/lizard.c
Opt: exit() does not return, no need to call va_end() afterwards
[libucw.git] / ucw / lizard.c
index f505b9462eca837c63ee2fc0edeb0a829d0ecbe0..d819a96b78f235b79989fbc0f7ffaafe655d06a8 100644 (file)
@@ -10,8 +10,8 @@
  *     the compression method is based on zlib.
  */
 
-#include "ucw/lib.h"
-#include "ucw/lizard.h"
+#include <ucw/lib.h>
+#include <ucw/lizard.h>
 
 #include <string.h>
 
@@ -295,7 +295,7 @@ lizard_decompress(const byte *in, byte *out)
   /* Requires out being allocated for the decompressed length must be known
    * beforehand.  It is desirable to lock the following memory page for
    * read-only access to prevent buffer overflow.  Returns the actual
-   * decompressed length or a negative number when an error has occured.  */
+   * decompressed length or a negative number when an error has occurred.  */
 {
   byte *out_start = out;
   uns expect_copy_command = 1;