shell32: Avoid shadowing a parameter.
diff --git a/dlls/shell32/trash.c b/dlls/shell32/trash.c
index 99e7d7e..3352c0a 100644
--- a/dlls/shell32/trash.c
+++ b/dlls/shell32/trash.c
@@ -423,10 +423,10 @@
     else
     {
         /* show only the file name */
-        char *filename = strrchr(original_file_name, '/');
-        if (filename == NULL)
-            filename = original_file_name;
-        MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, data->cFileName, MAX_PATH);
+        char *file = strrchr(original_file_name, '/');
+        if (file == NULL)
+            file = original_file_name;
+        MultiByteToWideChar(CP_UNIXCP, 0, file, -1, data->cFileName, MAX_PATH);
     }
     
     deletion_date = XDG_GetStringValue(parsed, trashinfo_group, "DeletionDate", 0);