Re: [Qemu-devel] [PATCH 06/12] qga: move option parsing to seperate function

2015-08-25 Thread Marc-André Lureau
hi On Tue, Aug 25, 2015 at 6:24 PM, Michael Roth wrote: > Since we want to pass these around as a representation of the > configuration state, I'd rather we package them into a GAConfig > structure or something of the sort that and pass it around as arguments > rather than as globals. Between par

Re: [Qemu-devel] [PATCH 06/12] qga: move option parsing to seperate function

2015-08-25 Thread Michael Roth
Quoting Marc-André Lureau (2015-07-01 06:47:41) > Move option parsing out of giant main(). > > Signed-off-by: Marc-André Lureau > --- > qga/main.c | 41 + > 1 file changed, 25 insertions(+), 16 deletions(-) > > diff --git a/qga/main.c b/qga/main.c > index

[Qemu-devel] [PATCH 06/12] qga: move option parsing to seperate function

2015-07-01 Thread Marc-André Lureau
Move option parsing out of giant main(). Signed-off-by: Marc-André Lureau --- qga/main.c | 41 + 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/qga/main.c b/qga/main.c index b776d16..b965f61 100644 --- a/qga/main.c +++ b/qga/main.c @@ -941