mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
extra/scanlzma: Fix compiler warnings.
This commit is contained in:
parent
c5c7ceb08a
commit
cee3021d30
1 changed files with 5 additions and 1 deletions
|
@ -37,6 +37,10 @@
|
|||
/* 5 8 Uncompressed size (little endian). -1 means unknown size */
|
||||
/* 13 Compressed data */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#define BUFSIZE 4096
|
||||
|
||||
int find_lzma_header(unsigned char *buf) {
|
||||
|
@ -48,7 +52,7 @@ int find_lzma_header(unsigned char *buf) {
|
|||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
char buf[BUFSIZE];
|
||||
unsigned char buf[BUFSIZE];
|
||||
int ret, i, numlzma, blocks=0;
|
||||
|
||||
if (argc != 2) {
|
||||
|
|
Loading…
Reference in a new issue