diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-06-17 16:43:41 (GMT) |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2008-07-16 21:27:01 (GMT) |
commit | 12b2b34e240a24bdbb2fdacf26a54b24ebf1ed81 (patch) | |
tree | dd0649a9bf9befdc90a0de090b797e617c3513e2 | |
parent | 3d532d5e3882c1387a2722df2a368c4a9224b12f (diff) | |
download | linux-12b2b34e240a24bdbb2fdacf26a54b24ebf1ed81.tar.xz |
acpi: fix printk format warning
Fix printk format warning:
linux-next-20080617/drivers/acpi/processor_throttling.c:1258: warning: format '%d' expects type 'int', but argument 4 has type 'size_t'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
-rw-r--r-- | drivers/acpi/processor_throttling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 53345db..0622ace 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c @@ -1255,7 +1255,7 @@ static ssize_t acpi_processor_write_throttling(struct file *file, if (state_val >= pr->throttling.state_count) return -EINVAL; - snprintf(tmpbuf, 5, "%d", state_val); + snprintf(tmpbuf, 5, "%zu", state_val); if (strcmp(tmpbuf, charp) != 0) return -EINVAL; |