setupapi: Indentation fix

Andrew Talbot andrew.talbot at talbotville.com
Sat Mar 14 10:13:48 CDT 2009


It's a tabs vs spaces thing, but it looks way out on my system.

-- Andy.
---
Changelog:
    setupapi: Indentation fix.

diff --git a/dlls/setupapi/queue.c b/dlls/setupapi/queue.c
index 6c9ca64..faeae01 100644
--- a/dlls/setupapi/queue.c
+++ b/dlls/setupapi/queue.c
@@ -1277,15 +1277,15 @@ BOOL WINAPI SetupCommitFileQueueW( HWND owner, HSPFILEQ handle, PSP_FILE_CALLBAC
                        debugstr_w( op_result == FILEOP_NEWPATH ? newpath : paths.Source ),
                        debugstr_w(paths.Target) );
                 if (op->dst_path)
-		{
-		    if (!create_full_pathW( op->dst_path ))
-		    {
-			paths.Win32Error = GetLastError();
-			op_result = handler( context, SPFILENOTIFY_COPYERROR,
-					     (UINT_PTR)&paths, (UINT_PTR)newpath );
-			if (op_result == FILEOP_ABORT) goto done;
-		    }
-		}
+                {
+                    if (!create_full_pathW( op->dst_path ))
+                    {
+                        paths.Win32Error = GetLastError();
+                        op_result = handler( context, SPFILENOTIFY_COPYERROR,
+                                             (UINT_PTR)&paths, (UINT_PTR)newpath );
+                        if (op_result == FILEOP_ABORT) goto done;
+                    }
+                }
                 if (do_file_copyW( op_result == FILEOP_NEWPATH ? newpath : paths.Source,
                                paths.Target, op->style, handler, context )) break;  /* success */
                 /* try to extract it from the cabinet file */



More information about the wine-patches mailing list