Fixed indentation.

This commit is contained in:
Alexandre Julliard 2003-08-15 03:51:19 +00:00
parent 9a7fdc2fbc
commit 269511026f

View file

@ -55,7 +55,7 @@ static TCHAR *szTitle = "rundll32";
static TCHAR *szWindowClass = "class_rundll32";
static ATOM MyRegisterClass(HINSTANCE hInstance)
{
{
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
@ -73,10 +73,10 @@ static ATOM MyRegisterClass(HINSTANCE hInstance)
wcex.hIconSm = NULL;
return RegisterClassEx(&wcex);
}
}
static LPWSTR GetNextArg(LPCWSTR *cmdline)
{
{
LPCWSTR s;
LPWSTR arg,d;
int in_quotes,bcount,len=0;