summaryrefslogtreecommitdiffstats
path: root/fish/alloc.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-09-08 11:00:00 +0100
committerRichard Jones <rjones@redhat.com>2010-09-08 11:00:00 +0100
commitd5c8d3b45b9646a4ae9d4ea033e1cc13a6e25c1f (patch)
tree5a98c63031a12a13647019e2eca5190ce473febf /fish/alloc.c
parent574df371a0421b4b83386f43e5095ccea5069e5b (diff)
downloadlibguestfs-d5c8d3b45b9646a4ae9d4ea033e1cc13a6e25c1f.tar.gz
libguestfs-d5c8d3b45b9646a4ae9d4ea033e1cc13a6e25c1f.tar.xz
libguestfs-d5c8d3b45b9646a4ae9d4ea033e1cc13a6e25c1f.zip
fish: Add guestfish -N bootroot and -N bootrootlv for creating boot+root disks.
Diffstat (limited to 'fish/alloc.c')
-rw-r--r--fish/alloc.c6
1 files changed, 2 insertions, 4 deletions
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;
}