Removed L suffix on constants - confuses source converter and not

needed


date	2002.12.06.22.22.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:03:51 +00:00
parent a49c805f51
commit 842ac3391f

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: cmclib - Local implementation of C library functions
* $Revision: 1.47 $
* $Revision: 1.48 $
*
*****************************************************************************/
@ -843,7 +843,7 @@ AcpiUtStrtoul (
(UINT32) Base))
{
Status = AE_ERROR;
ReturnValue = 0L; /* reset */
ReturnValue = 0; /* reset */
}
else
{
@ -862,7 +862,7 @@ done:
*/
if (Terminator)
{
if (converted == 0 && ReturnValue == 0L && String != NULL)
if (converted == 0 && ReturnValue == 0 && String != NULL)
{
*Terminator = (NATIVE_CHAR *) StringStart;
}