Skip to content

Commit

Permalink
Fix runtar.c not building
Browse files Browse the repository at this point in the history
  • Loading branch information
exuvo committed Dec 23, 2024
1 parent ac850eb commit 2832db0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-src/runtar.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ main(
{
#ifdef GNUTAR
int i;
char **j;
const char **j;
char *e;
char *dbf;
char *cmdline;
Expand Down Expand Up @@ -255,7 +255,7 @@ check_whitelist(
gchar* option)
{
bool result = TRUE;
char** i;
const char** i;

for(i=whitelisted_args; *i; i++) {
if (g_str_has_prefix(option, *i)) {
Expand Down

0 comments on commit 2832db0

Please sign in to comment.