header compare fix

date	2005.04.08.18.58.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:36:42 +00:00
parent 19dd4aeabd
commit 538096f91b

View File

@ -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;