diff options
author | Len Brown <len.brown@intel.com> | 2005-12-22 22:23:06 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-12-22 22:24:10 -0500 |
commit | 9d6be4bed65a3bd36ab2de12923bff4f4530bd86 (patch) | |
tree | ba9452d497ff1c2365563346b0e168687873ad43 /drivers | |
parent | 05465fd5622202d65634b3a9a8bcc9cbb384a82a (diff) | |
download | op-kernel-dev-9d6be4bed65a3bd36ab2de12923bff4f4530bd86.zip op-kernel-dev-9d6be4bed65a3bd36ab2de12923bff4f4530bd86.tar.gz |
[ACPI] fix build warning from owner_id patch
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/utilities/utmisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/utilities/utmisc.c b/drivers/acpi/utilities/utmisc.c index b886780..2ce872d 100644 --- a/drivers/acpi/utilities/utmisc.c +++ b/drivers/acpi/utilities/utmisc.c @@ -87,7 +87,7 @@ acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id) for (i = 0; i < 64; i++) { if (!(acpi_gbl_owner_id_mask & (1ULL << i))) { ACPI_DEBUG_PRINT((ACPI_DB_VALUES, - "Current owner_id mask: %16.16lX New ID: %2.2X\n", + "Current owner_id mask: %16.16LX New ID: %2.2X\n", acpi_gbl_owner_id_mask, (unsigned int)(i + 1))); |