diff options
author | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
commit | 30f218eb43414407ff8fad136ac1b14d419c29b5 (patch) | |
tree | 1e4c1dd71272f861daf90baced75fa604cdbf168 /lzss-main.cpp | |
parent | 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (diff) |
Compiling again
Diffstat (limited to 'lzss-main.cpp')
-rw-r--r-- | lzss-main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lzss-main.cpp b/lzss-main.cpp index 87d2a0f..ed07eec 100644 --- a/lzss-main.cpp +++ b/lzss-main.cpp @@ -18,8 +18,8 @@ */ #include <stdio.h> -#include <stdlib.h> #include <string.h> +#include <stdlib.h> #include <getopt.h> #include "Input.h" #include "Output.h" @@ -158,7 +158,7 @@ void dump(void) { } virtual int startup() throw (GeneralException) { - long length = -1; + int length = -1; Handle * f1, * f2; int p, show = 0; int c, s, t; |