[libvirt] [rust PATCH v2 4/5] libvirt-rust: use reference instead of moving

Sahid Orentino Ferdjaoui sahid.ferdjaoui at canonical.com
Fri Jan 10 11:49:01 UTC 2020


On Tue, Dec 24, 2019 at 12:12:54AM -0700, Zixing Liu wrote:
> Signed-off-by: Zixing Liu <liushuyu at aosc.io>
> ---
>  src/domain.rs | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui at canonical.com>

> diff --git a/src/domain.rs b/src/domain.rs
> index 40a18d8..61ca411 100644
> --- a/src/domain.rs
> +++ b/src/domain.rs
> @@ -1546,7 +1546,7 @@ impl Domain {
>          }
>      }
>  
> -    pub fn open_console(&self, name: &str, stream: Stream, flags: u32) -> Result<u32, Error> {
> +    pub fn open_console(&self, name: &str, stream: &Stream, flags: u32) -> Result<u32, Error> {
>          unsafe {
>              let ret = virDomainOpenConsole(self.as_ptr(),
>                                             string_to_c_chars!(name),
> -- 
> 2.24.1





More information about the libvir-list mailing list