diff options
author | Lauri Kasanen <curaga@operamail.com> | 2010-07-04 00:04:03 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-04 00:04:03 +0200 |
commit | 7c1b2b5420d4208864b8bc6e07e90792aed94981 (patch) | |
tree | c2c94e95289de30c85495a91b9615cab394beaf3 /util-linux | |
parent | 5c296de390b1329a6243d12a86ef9c4726ace22a (diff) | |
download | busybox-7c1b2b5420d4208864b8bc6e07e90792aed94981.tar.gz |
losetup: use LOOP_foo defines
Signed-off-by: Lauri Kasanen <curaga@operamail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/losetup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/losetup.c b/util-linux/losetup.c index 0f5914c88..3873be399 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.c @@ -65,9 +65,9 @@ int losetup_main(int argc UNUSED_PARAM, char **argv) n = 0; while (1) { char *s; - char dev[sizeof(LOOP_NAME) + sizeof(int)*3]; + char dev[LOOP_NAMESIZE]; - sprintf(dev, LOOP_NAME"%u", n); + sprintf(dev, LOOP_FORMAT, n); s = query_loop(dev); n++; if (!s) { |