mirror of
https://github.com/acpica/acpica/
synced 2025-01-09 19:12:43 +03:00
use AcpiUtStrupr
date 2005.04.08.19.09.00; author rmoore1; state Exp;
This commit is contained in:
parent
3e8c98adc7
commit
f698c05726
@ -3,7 +3,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: aslcompiler.l - Flex input file
|
||||
* $Revision: 1.72 $
|
||||
* $Revision: 1.73 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -477,7 +477,7 @@ NamePathTail [.]{NameSeg}
|
||||
if (strcmp (AslCompilertext, "\\"))
|
||||
{
|
||||
strcpy (s, "____");
|
||||
ACPI_STRUPR (AslCompilertext);
|
||||
AcpiUtStrupr (AslCompilertext);
|
||||
}
|
||||
memcpy (s, AslCompilertext, strlen (AslCompilertext));
|
||||
AslCompilerlval.s = s;
|
||||
@ -487,7 +487,7 @@ NamePathTail [.]{NameSeg}
|
||||
{NameString} { char *s;
|
||||
count (0);
|
||||
s=malloc (strlen (AslCompilertext)+1);
|
||||
ACPI_STRUPR (AslCompilertext);
|
||||
AcpiUtStrupr (AslCompilertext);
|
||||
strcpy (s, AslCompilertext);
|
||||
s[strlen (AslCompilertext)] = 0;
|
||||
AslCompilerlval.s = s;
|
||||
|
Loading…
Reference in New Issue
Block a user