strip whitespace from end of lines

svn path=/trunk/; revision=15170
This commit is contained in:
Steven Edwards 2005-05-09 01:44:13 +00:00
parent 189e9fae5c
commit c31bbf06e5
7 changed files with 9 additions and 9 deletions

View file

@ -363,7 +363,7 @@ AddDesktopItemW (BOOL bCommonDesktop,
psl->lpVtbl->Release(psl); psl->lpVtbl->Release(psl);
Ole32.fn.CoUninitialize(); Ole32.fn.CoUninitialize();
UnloadDynamicImports(&Ole32); UnloadDynamicImports(&Ole32);
DPRINT ("AddDesktopItemW() done\n"); DPRINT ("AddDesktopItemW() done\n");

View file

@ -51,9 +51,9 @@ SetUserEnvironmentVariable (LPVOID *Environment,
DstValue.Length = 0; DstValue.Length = 0;
DstValue.MaximumLength = Length; DstValue.MaximumLength = Length;
DstValue.Buffer = Buffer = LocalAlloc(LPTR, DstValue.Buffer = Buffer = LocalAlloc(LPTR,
Length); Length);
if (DstValue.Buffer == NULL) if (DstValue.Buffer == NULL)
{ {
DPRINT1("LocalAlloc() failed\n"); DPRINT1("LocalAlloc() failed\n");
@ -102,7 +102,7 @@ SetUserEnvironmentVariable (LPVOID *Environment,
&DstValue); &DstValue);
if (Buffer) LocalFree(Buffer); if (Buffer) LocalFree(Buffer);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DPRINT1("RtlSetEnvironmentVariable() failed (Status %lx)\n", Status); DPRINT1("RtlSetEnvironmentVariable() failed (Status %lx)\n", Status);

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id$ /* $Id$
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries

View file

@ -108,7 +108,7 @@ GetUserSidFromToken (HANDLE hToken,
/* Dynamic DLL loading interface **********************************************/ /* Dynamic DLL loading interface **********************************************/
/* OLE32.DLL import table */ /* OLE32.DLL import table */
DYN_MODULE DynOle32 = DYN_MODULE DynOle32 =
{ {
L"ole32.dll", L"ole32.dll",
{ {

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id$ /* $Id$
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id$ /* $Id$
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id$ /* $Id$
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries