diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-02 13:19:08 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-02 13:19:08 +0000 |
commit | e2d176b2621411cf5104e60a5b932c6df66f5337 (patch) | |
tree | 98d3017ec903cb55c87fd8d3d652a10c307c0ed3 /target/linux/generic | |
parent | ecd739427b3e5e4092ae5392d565a7a0bb002abc (diff) |
[kernel/2.6.39] MIPS: fix printing of size_t arg
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30783 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-rw-r--r-- | target/linux/generic/patches-2.6.39/335-mips-kexec-cleanup-kexec-tools-parameter-handling.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-2.6.39/335-mips-kexec-cleanup-kexec-tools-parameter-handling.patch b/target/linux/generic/patches-2.6.39/335-mips-kexec-cleanup-kexec-tools-parameter-handling.patch index f31e767a3..3df7b0b2d 100644 --- a/target/linux/generic/patches-2.6.39/335-mips-kexec-cleanup-kexec-tools-parameter-handling.patch +++ b/target/linux/generic/patches-2.6.39/335-mips-kexec-cleanup-kexec-tools-parameter-handling.patch @@ -28,7 +28,7 @@ -#define ARGV_MAX_ARGS (COMMAND_LINE_SIZE / 15) + for (i = 0; i < kexec_args[0]; i++) -+ pr_info("kexec_argv[%d] = %p, %s\n", i, ++ pr_info("kexec_argv[%zd] = %p, %s\n", i, + (char *)kexec_argv[i], (char *)kexec_argv[i]); +} |