Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-13 20:29:46 +0300
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-13 20:29:46 +0300
commit5a62284972a46896cfa7364492caaef10cb83b6a (patch)
treec9a6fb1d2bc612376b49f658b1f2b674d2252ede /util-linux/losetup.c
parent26ea0b7f167a3960de6ef0076828d135e6a684d0 (diff)
this applet needlessly big! TODO: bb_getopt_ulflags()
- use atol for the offset, which is always in bytes. Small step in eventually dropping bb_xparse_number().
Diffstat (limited to 'util-linux/losetup.c')
-rw-r--r--util-linux/losetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/losetup.c b/util-linux/losetup.c
index 44721bd34..24639ad1c 100644
--- a/util-linux/losetup.c
+++ b/util-linux/losetup.c
@@ -39,7 +39,7 @@ die_failed:
bb_perror_msg_and_die("%s",argv[optind]);
case 'o':
- offset = bb_xparse_number (optarg, NULL);
+ offset = atol(optarg);
/* Fall through to do the losetup */
case -1:
/* losetup takes two argument:, loop_device and file */