aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/boot/addRamDisk.c
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2005-11-09 20:54:43 +0100
committerPaul Mackerras <paulus@samba.org>2005-11-10 11:26:01 +1100
commitc44bc68dc0d2ca95e48b7242fef48200cd03352d (patch)
treedb7b2a86677c8584ec6aae773c98f771895ff9ab /arch/ppc64/boot/addRamDisk.c
parent[PATCH] ppc64 boot: remove sysmap from required filenames (diff)
downloadlinux-dev-c44bc68dc0d2ca95e48b7242fef48200cd03352d.tar.xz
linux-dev-c44bc68dc0d2ca95e48b7242fef48200cd03352d.zip
[PATCH] ppc64 boot: fix compile warnings
Fix a few compile warnings arch/ppc64/boot/addRamDisk.c:166: warning: int format, long unsigned int arg (arg 2) arch/ppc64/boot/addRamDisk.c:170: warning: int format, long unsigned int arg (arg 2) arch/ppc64/boot/addRamDisk.c:265: warning: unsigned int format, long unsigned int arg (arg 2) arch/ppc64/boot/addRamDisk.c:302: warning: unsigned int format, long unsigned int arg (arg 3) Signed-off-by: Olaf Hering <olh@suse.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to '')
-rw-r--r--arch/ppc64/boot/addRamDisk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/ppc64/boot/addRamDisk.c b/arch/ppc64/boot/addRamDisk.c
index d99c04a38e46..c02a99952be7 100644
--- a/arch/ppc64/boot/addRamDisk.c
+++ b/arch/ppc64/boot/addRamDisk.c
@@ -163,11 +163,11 @@ int main(int argc, char **argv)
fseek(inputVmlinux, 0, SEEK_END);
kernelLen = ftell(inputVmlinux);
fseek(inputVmlinux, 0, SEEK_SET);
- printf("kernel file size = %d\n", kernelLen);
+ printf("kernel file size = %lu\n", kernelLen);
actualKernelLen = kernelLen - ElfHeaderSize;
- printf("actual kernel length (minus ELF header) = %d\n", actualKernelLen);
+ printf("actual kernel length (minus ELF header) = %lu\n", actualKernelLen);
round = actualKernelLen % 4096;
roundedKernelLen = actualKernelLen;
@@ -262,7 +262,7 @@ int main(int argc, char **argv)
death("Could not read hvReleaseData pointer\n", outputVmlinux, out_name);
}
hvReleaseData = ntohl(hvReleaseData); /* Convert to native int */
- printf("hvReleaseData is at %08x\n", hvReleaseData);
+ printf("hvReleaseData is at %08lx\n", hvReleaseData);
/* fseek to the hvReleaseData */
fseek(outputVmlinux, ElfHeaderSize + hvReleaseData, SEEK_SET);
@@ -298,7 +298,7 @@ int main(int argc, char **argv)
if (fwrite(inbuf, 0x18, 1, outputVmlinux) != 1) {
death("Could not write naca\n", outputVmlinux, out_name);
}
- printf("Ram Disk of 0x%lx pages is attached to the kernel at offset 0x%08x\n",
+ printf("Ram Disk of 0x%lx pages is attached to the kernel at offset 0x%08lx\n",
ramPages, ramStartOffs);
/* Done */