diff options
author | Steve French <sfrench@us.ibm.com> | 2006-02-01 15:16:53 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-02-01 15:16:53 -0500 |
commit | e6da74e1f20ea7822e52a9e4fbd3d25bd907e471 (patch) | |
tree | d9b3bc7e654fb788d1cf3a1759b1b3c74cc56a04 /kernel/power/disk.c | |
parent | 1877c9ea66a29563987f22d0a86c66f438a87ce2 (diff) | |
parent | 3c3b809e256c417847f1a96b2f9d9f66c7fcb02c (diff) |
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'kernel/power/disk.c')
-rw-r--r-- | kernel/power/disk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index e24446f8d8cd..f2b3b0ea512a 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
@@ -367,14 +367,14 @@ power_attr(resume); | |||
367 | 367 | ||
368 | static ssize_t image_size_show(struct subsystem * subsys, char *buf) | 368 | static ssize_t image_size_show(struct subsystem * subsys, char *buf) |
369 | { | 369 | { |
370 | return sprintf(buf, "%u\n", image_size); | 370 | return sprintf(buf, "%lu\n", image_size); |
371 | } | 371 | } |
372 | 372 | ||
373 | static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n) | 373 | static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n) |
374 | { | 374 | { |
375 | unsigned int size; | 375 | unsigned long size; |
376 | 376 | ||
377 | if (sscanf(buf, "%u", &size) == 1) { | 377 | if (sscanf(buf, "%lu", &size) == 1) { |
378 | image_size = size; | 378 | image_size = size; |
379 | return n; | 379 | return n; |
380 | } | 380 | } |