mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 05:49:18 +03:00
header compare fix
date 2005.04.08.18.58.00; author rmoore1; state Exp;
This commit is contained in:
parent
19dd4aeabd
commit
538096f91b
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: abcompare - compare AML files
|
||||
* $Revision: 1.17 $
|
||||
* $Revision: 1.18 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -432,7 +432,7 @@ AbCompareAmlFiles (
|
||||
|
||||
/* Table signatures must match */
|
||||
|
||||
if ((UINT32) Header1.Signature != (UINT32) Header1.Signature)
|
||||
if (*((UINT32 *) Header1.Signature) != *((UINT32 *) Header2.Signature))
|
||||
{
|
||||
printf ("Table signatures do not match\n");
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user