mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Removed dbgprints.
svn path=/trunk/; revision=8192
This commit is contained in:
parent
757ff359b5
commit
d3a56d75eb
1 changed files with 1 additions and 5 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: computername.c,v 1.5 2004/02/15 07:03:56 arty Exp $
|
||||
/* $Id: computername.c,v 1.6 2004/02/15 07:07:11 arty Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -95,8 +95,6 @@ static BOOL GetComputerNameFromRegistry( LPWSTR RegistryKey,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
DbgPrint("*nSize = %d, KeyInfo->DataLength = %d\n",
|
||||
*nSize, KeyInfo->DataLength);
|
||||
if( *nSize > (KeyInfo->DataLength / sizeof(WCHAR)) ) {
|
||||
*nSize = KeyInfo->DataLength / sizeof(WCHAR);
|
||||
lpBuffer[*nSize] = 0;
|
||||
|
@ -236,8 +234,6 @@ GetComputerNameExA (
|
|||
UnicodeString.Length = *nSize * sizeof(WCHAR);
|
||||
UnicodeString.Buffer = TempBuffer;
|
||||
|
||||
DbgPrint("GetComputerNameExW Result: %wZ\n", &UnicodeString);
|
||||
|
||||
RtlUnicodeStringToAnsiString (&AnsiString,
|
||||
&UnicodeString,
|
||||
FALSE);
|
||||
|
|
Loading…
Reference in a new issue