[libvirt] [ruby-libvirt PATCH] Fix compile error due to missing semicolon

Chris Lalancette clalance at redhat.com
Mon Mar 14 16:34:08 UTC 2011


On 03/09/11 - 11:23:01AM, Matthias Bolte wrote:
> I pushed this under the trivial build breaker rule.
> 
> Matthias

> From fd48bb491477843d520a14f226e79fde3e053da7 Mon Sep 17 00:00:00 2001
> From: Matthias Bolte <matthias.bolte at googlemail.com>
> Date: Wed, 9 Mar 2011 11:17:34 +0100
> Subject: [ruby-libvirt PATCH] Fix compile error due to missing semicolon
> 
> ---
>  ext/libvirt/connect.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/ext/libvirt/connect.c b/ext/libvirt/connect.c
> index 0228a7a..a9e9923 100644
> --- a/ext/libvirt/connect.c
> +++ b/ext/libvirt/connect.c
> @@ -1808,7 +1808,7 @@ static VALUE libvirt_conn_get_sys_info(int argc, VALUE *argv, VALUE c) {
>          flags = INT2NUM(0);
>  
>      gen_call_string(virConnectGetSysinfo, conn(c), 1, connect_get(c),
> -                    NUM2UINT(flags))
> +                    NUM2UINT(flags));
>  }
>  #endif

Eek.  Thanks.

-- 
Chris Lalancette




More information about the libvir-list mailing list