From d5c8d3b45b9646a4ae9d4ea033e1cc13a6e25c1f Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 8 Sep 2010 11:00:00 +0100 Subject: fish: Add guestfish -N bootroot and -N bootrootlv for creating boot+root disks. --- fish/alloc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'fish/alloc.c') diff --git a/fish/alloc.c b/fish/alloc.c index 75337414..29d9845b 100644 --- a/fish/alloc.c +++ b/fish/alloc.c @@ -58,8 +58,6 @@ do_sparse (const char *cmd, int argc, char *argv[]) return 0; } -static int parse_size (const char *str, off_t *size_rtn); - /* This is the underlying allocation function. It's called from * a few other places in guestfish. */ @@ -144,7 +142,7 @@ alloc_disk (const char *filename, const char *size_str, int add, int sparse) return 0; } -static int +int parse_size (const char *str, off_t *size_rtn) { unsigned long long size; @@ -154,7 +152,7 @@ parse_size (const char *str, off_t *size_rtn) if (xerr != LONGINT_OK) { fprintf (stderr, _("%s: invalid integer parameter (%s returned %d)\n"), - "alloc_disk", "xstrtoull", xerr); + "parse_size", "xstrtoull", xerr); return -1; } -- cgit