Skip to content

Commit

Permalink
fix linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
vasi committed Apr 25, 2020
1 parent 4a03d0a commit f385e7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#pragma mark UTILS

FILE *gInFile = NULL;
FILE *gInFile = NULL, *gOutFile = NULL;
lzma_stream gStream = LZMA_STREAM_INIT;


Expand Down
4 changes: 2 additions & 2 deletions src/pixz.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ void pixz_read(bool verify, size_t nspecs, char **specs);

#pragma mark UTILS

FILE *gInFile, *gOutFile;
lzma_stream gStream;
extern FILE *gInFile, *gOutFile;
extern lzma_stream gStream;

extern lzma_index *gIndex;

Expand Down

0 comments on commit f385e7b

Please sign in to comment.