aboutsummaryrefslogtreecommitdiff
path: root/util-linux/losetup.c
diff options
context:
space:
mode:
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)
65 n = 0; 65 n = 0;
66 while (1) { 66 while (1) {
67 char *s; 67 char *s;
68 char dev[sizeof(LOOP_NAME) + sizeof(int)*3]; 68 char dev[LOOP_NAMESIZE];
69 69
70 sprintf(dev, LOOP_NAME"%u", n); 70 sprintf(dev, LOOP_FORMAT, n);
71 s = query_loop(dev); 71 s = query_loop(dev);
72 n++; 72 n++;
73 if (!s) { 73 if (!s) {