summaryrefslogtreecommitdiff
path: root/source/tools/examples/examples.c
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2016-12-21 08:34:01 -0800
committerGitHub <noreply@github.com>2016-12-21 08:34:01 -0800
commit73b741b6055299f93d788fda15d134b5a228aec2 (patch)
tree340a5dfb83217a3e2013213abc6db1ddac2685f8 /source/tools/examples/examples.c
parentb7dae343fbb8c392999a66f5e08be5744a5d07e2 (diff)
parent93d652bbfca28ff825d7d472e2a10fdda3189d3d (diff)
downloadacpica-73b741b6055299f93d788fda15d134b5a228aec2.tar.gz
Merge pull request #196 from zetalog/acpica-trivial
Acpica trivial
Diffstat (limited to 'source/tools/examples/examples.c')
-rw-r--r--source/tools/examples/examples.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tools/examples/examples.c b/source/tools/examples/examples.c
index d9bbe5330..e8b79de06 100644
--- a/source/tools/examples/examples.c
+++ b/source/tools/examples/examples.c
@@ -540,8 +540,8 @@ ExecuteOSI (void)
if (ReturnValue.Length < sizeof (ACPI_OBJECT))
{
- AcpiOsPrintf ("Return value from _OSI method too small, %.8X\n",
- ReturnValue.Length);
+ AcpiOsPrintf ("Return value from _OSI method too small, %.8lX\n",
+ (UINT64) ReturnValue.Length);
goto ErrorExit;
}