diff options
Diffstat (limited to 'src/appl/gssftp/ftp/cmds.c')
-rw-r--r-- | src/appl/gssftp/ftp/cmds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/appl/gssftp/ftp/cmds.c b/src/appl/gssftp/ftp/cmds.c index ac7a8039f8..9afefe118b 100644 --- a/src/appl/gssftp/ftp/cmds.c +++ b/src/appl/gssftp/ftp/cmds.c @@ -796,7 +796,7 @@ void mput(argc, argv) printf("%s\n", globerr); if (gargs) { blkfree(gargs); - free((char *)gargs); + free(gargs); } continue; } @@ -818,7 +818,7 @@ void mput(argc, argv) } if (gargs != NULL) { blkfree(gargs); - free((char *)gargs); + free(gargs); } } (void) signal(SIGINT, oldintr); @@ -1959,7 +1959,7 @@ static int globulize(cpp) printf("%s: %s\n", *cpp, globerr); if (globbed) { blkfree(globbed); - free((char *)globbed); + free(globbed); } return (0); } @@ -1969,7 +1969,7 @@ static int globulize(cpp) /* don't waste too much memory */ if (*globbed) { blkfree(globbed1); - free((char *)globbed); + free(globbed); } } return (1); |