Gregor Schneider : xcopy: Remove unneeded assignment.
Module: wine Branch: master Commit: b6a5da06e928e03f479f7847a7d73c767aa830ef URL: http://source.winehq.org/git/wine.git/?a=commit;h=b6a5da06e928e03f479f7847a7... Author: Gregor Schneider <grschneider(a)gmail.com> Date: Sun Dec 13 18:03:00 2009 +0100 xcopy: Remove unneeded assignment. --- programs/xcopy/xcopy.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/xcopy/xcopy.c b/programs/xcopy/xcopy.c index eaff10c..f996144 100644 --- a/programs/xcopy/xcopy.c +++ b/programs/xcopy/xcopy.c @@ -261,10 +261,10 @@ int wmain (int argc, WCHAR *argvW[]) WINE_TRACE("Destination : '%s'\n", wine_dbgstr_w(supplieddestination)); /* Extract required information from source specification */ - rc = XCOPY_ProcessSourceParm(suppliedsource, sourcestem, sourcespec, flags); + XCOPY_ProcessSourceParm(suppliedsource, sourcestem, sourcespec, flags); /* Extract required information from destination specification */ - rc = XCOPY_ProcessDestParm(supplieddestination, destinationstem, + XCOPY_ProcessDestParm(supplieddestination, destinationstem, destinationspec, sourcespec, flags); /* Trace out the resulting information */
participants (1)
-
Alexandre Julliard