Skip to content

Commit

Permalink
patch unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
elydre committed Jun 22, 2024
1 parent 786367f commit 72f8787
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/gzip.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int is_fd_gzip(FILE *file) {

int decompress_file(const char *source) {
char *dest = get_dest_filename(source, 0);
int flush, tmp, ret = 0;
int ret;

FILE *source_file = fopen(source, "rb");
if (!source_file) {
Expand Down
1 change: 0 additions & 1 deletion cmd/lish.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ char *ss_mv_single(char *arg, int last_exit) {
for (int k = 0; k < value_len; k++)
arg[tmp + k] = value[k];
j = tmp + value_len - 1;
value;
free(var);
}
}
Expand Down

0 comments on commit 72f8787

Please sign in to comment.