whitespace elimination

This commit is contained in:
Christopher Faylor 2011-06-06 05:02:13 +00:00
parent daf7238603
commit b86f999af1
62 changed files with 453 additions and 453 deletions

View File

@ -955,6 +955,7 @@ dtable::fixup_before_fork (DWORD target_proc_id)
} }
unlock (); unlock ();
} }
void void
dtable::fixup_before_exec (DWORD target_proc_id) dtable::fixup_before_exec (DWORD target_proc_id)
{ {
@ -968,4 +969,3 @@ dtable::fixup_before_exec (DWORD target_proc_id)
} }
unlock (); unlock ();
} }

View File

@ -1611,7 +1611,8 @@ fhandler_disk_file::rmdir ()
FILE_BASIC_INFORMATION fbi; FILE_BASIC_INFORMATION fbi;
NTSTATUS q_status; NTSTATUS q_status;
q_status = NtQueryAttributesFile (pc.get_object_attr (attr, sec_none_nih), &fbi); q_status = NtQueryAttributesFile (pc.get_object_attr (attr, sec_none_nih),
&fbi);
if (!NT_SUCCESS (status) && q_status == STATUS_OBJECT_NAME_NOT_FOUND) if (!NT_SUCCESS (status) && q_status == STATUS_OBJECT_NAME_NOT_FOUND)
status = STATUS_SUCCESS; status = STATUS_SUCCESS;
else if (NT_SUCCESS (status) && NT_SUCCESS (q_status)) else if (NT_SUCCESS (status) && NT_SUCCESS (q_status))

View File

@ -1,4 +1,4 @@
/* Fhandler_dev_dsp: code to emulate OSS sound model /dev/dsp /* fhandler_dev_dsp: code to emulate OSS sound model /dev/dsp
Copyright 2001, 2002, 2003, 2004, 2008, 2011 Red Hat, Inc Copyright 2001, 2002, 2003, 2004, 2008, 2011 Red Hat, Inc

View File

@ -189,7 +189,6 @@ reg_key::get_string (PCWSTR name, PWCHAR dst, size_t max, PCWSTR def)
wcpncpy (dst, def, max); wcpncpy (dst, def, max);
else else
wcpncpy (dst, (PWCHAR) vbuf->Data, max); wcpncpy (dst, (PWCHAR) vbuf->Data, max);
} }
return status; return status;
} }