[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [libvirt] [PATCH] virsh: Fix uninitialized variable warning
- From: Matthias Bolte <matthias bolte googlemail com>
- To: "Daniel P. Berrange" <berrange redhat com>
- Cc: libvir-list redhat com
- Subject: Re: [libvirt] [PATCH] virsh: Fix uninitialized variable warning
- Date: Sat, 14 May 2011 06:54:54 +0200
2011/5/13 Daniel P. Berrange <berrange redhat com>:
> On Fri, May 13, 2011 at 08:29:00AM +0200, Matthias Bolte wrote:
>> Reported on FreeBSD only.
>> ---
>> tools/virsh.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/tools/virsh.c b/tools/virsh.c
>> index fbeb7c8..3baa015 100644
>> --- a/tools/virsh.c
>> +++ b/tools/virsh.c
>> @@ -11131,7 +11131,7 @@ vshCmddefHelp(vshControl *ctl, const char *cmdname)
>> if (def->opts) {
>> const vshCmdOptDef *opt;
>> for (opt = def->opts; opt->name; opt++) {
>> - const char *fmt;
>> + const char *fmt = "%s";
>> switch (opt->type) {
>> case VSH_OT_BOOL:
>> fmt = "[--%s]";
> ACK
>
>
> Daniel
>
Thanks, pushed.
Matthias
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]