aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/power/disk.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2006-02-01 06:05:07 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-02-01 11:53:12 -0500
commit853609b61ef88b414ffd1613741aa59894334320 (patch)
tree93def4ef8c820fb678bedf31f144b1d85942c181 /kernel/power/disk.c
parente8730eabd45e47e392f230ab8720c4b8537901fc (diff)
[PATCH] swsusp: use bytes as image size units
Make swsusp use bytes as the image size units, which is needed for future compatibility. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/power/disk.c')
-rw-r--r--kernel/power/disk.c6
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
368static ssize_t image_size_show(struct subsystem * subsys, char *buf) 368static 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
373static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n) 373static 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 }