diff options
author | Wayne Davison <wayned@samba.org> | 2003-01-11 01:29:30 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-01-11 01:29:30 +0000 |
commit | 9680f811f6b7763c594ab6f4c4b139df456e2620 (patch) | |
tree | 98ce039b30d7838f64a5fdd8f638efa45ec15c11 /options.c | |
parent | bda41fa509dc5214c9d7e924f95866150efaeb81 (diff) | |
download | rsync-9680f811f6b7763c594ab6f4c4b139df456e2620.tar.gz rsync-9680f811f6b7763c594ab6f4c4b139df456e2620.tar.bz2 rsync-9680f811f6b7763c594ab6f4c4b139df456e2620.zip |
Cast poptGetOptArg() to remove a compiler warning.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |