Skip to content

Commit 3887087

Browse files
committed
[CMD] Fix build. Addendum to 67ac583.
1 parent 67ac583 commit 3887087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/shell/cmd/copy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ copy(TCHAR source[MAX_PATH],
259259

260260
TRACE ("setting mode\n");
261261
/* For MS-DOS backwards-compatibility, always remove the read-only attribute */
262-
SetFileAttributes (dest, dwAttribs & ~FILE_ATTRIBUTE_READONLY);
262+
SetFileAttributes (dest, dwAttrib & ~FILE_ATTRIBUTE_READONLY);
263263

264264
/* Now finish off the copy if needed with CopyFileEx */
265265
if (lpdwFlags & COPY_RESTART)

0 commit comments

Comments
 (0)