From: Wayne Davison Date: Sat, 11 Jan 2003 01:29:30 +0000 (+0000) Subject: Cast poptGetOptArg() to remove a compiler warning. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/9680f811f6b7763c594ab6f4c4b139df456e2620 Cast poptGetOptArg() to remove a compiler warning. --- diff --git a/options.c b/options.c index 310e8a08..5f6e2407 100644 --- a/options.c +++ b/options.c @@ -595,7 +595,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) break; case OPT_LINK_DEST: #if HAVE_LINK - compare_dest = poptGetOptArg(pc); + compare_dest = (char *)poptGetOptArg(pc); link_dest = 1; break; #else