aboutsummaryrefslogtreecommitdiff
path: root/util-linux/losetup.c
diff options
context:
space:
mode:
authorLauri Kasanen <curaga@operamail.com>2010-07-04 00:04:03 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-07-04 00:04:03 +0200
commit7c1b2b5420d4208864b8bc6e07e90792aed94981 (patch)
treec2c94e95289de30c85495a91b9615cab394beaf3 /util-linux/losetup.c
parent5c296de390b1329a6243d12a86ef9c4726ace22a (diff)
downloadbusybox-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/losetup.c')
-rw-r--r--util-linux/losetup.c4
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) {