mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 09:24:08 +03:00
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:
parent
a49c805f51
commit
842ac3391f
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user