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>2007-04-12 15:36:56 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-04-12 15:36:56 +0400
commitc98c31783c062377d14b80735b056cf4c53c66e9 (patch)
tree900f4dbd061b9f27ba58f1ab7be478a9ce170093 /networking/libiproute/utils.c
parentb290889f0265e1278e8a868aa82a65bcc9099b0f (diff)
- shrink iproute a bit (-200 bytes). Untested
Diffstat (limited to 'networking/libiproute/utils.c')
-rw-r--r--networking/libiproute/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c
index 601e45bb4..9605c39db 100644
--- a/networking/libiproute/utils.c
+++ b/networking/libiproute/utils.c
@@ -29,7 +29,7 @@ int get_integer(int *val, char *arg, int base)
*val = res;
return 0;
}
-
+//XXX: FIXME: use some libbb function instead
int get_unsigned(unsigned *val, char *arg, int base)
{
unsigned long res;