Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Aug 2002 15:47:57 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 16873 for review
Message-ID:  <200208312247.g7VMlvjR033742@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=16873

Change 16873 by peter@peter_mckinley on 2002/08/31 15:46:55

	fix printf format warnings I added

Affected files ...

.. //depot/projects/ia64/sys/ia64/acpica/OsdEnvironment.c#4 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/acpica/OsdEnvironment.c#4 (text+ko) ====

@@ -55,10 +55,10 @@
 {
 
 	if (ia64_efi_acpi20_table) {
-printf("ACPI 2.0 table at %p\n", ia64_efi_acpi20_table);
+printf("ACPI 2.0 table at 0x%lx\n", ia64_efi_acpi20_table);
 	}
 	if (ia64_efi_acpi_table) {
-printf("ACPI 1.x table at %p\n", ia64_efi_acpi_table);
+printf("ACPI 1.x table at 0x%lx\n", ia64_efi_acpi_table);
 	}
 	if (ia64_efi_acpi20_table) {
 printf("Using ACPI2.0 table\n");

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208312247.g7VMlvjR033742>