[Qemu-devel] [PATCH] qemu-ga: drop unused local err variable

2016-03-19 Thread Stefan Hajnoczi
Commit 125b310e1d62e3a1dc1e7758563e598957ca7ae4 ("qemu-ga: move channel/transport functionality into wrapper class") stopped using the local err variable in channel_event_cb(). This patch deletes the unused variable. Signed-off-by: Stefan Hajnoczi --- qga/main.c | 6 -- 1 file changed, 6 de

Re: [Qemu-devel] [PATCH] qemu-ga: drop unused local err variable

2016-03-19 Thread Fam Zheng
On Wed, 03/16 15:16, Stefan Hajnoczi wrote: > Commit 125b310e1d62e3a1dc1e7758563e598957ca7ae4 ("qemu-ga: move > channel/transport functionality into wrapper class") stopped using the > local err variable in channel_event_cb(). > > This patch deletes the unused variable. > > Signed-off-by: Stefan

Re: [Qemu-devel] [PATCH] qemu-ga: drop unused local err variable

2016-03-18 Thread Michael Roth
Quoting Stefan Hajnoczi (2016-03-16 10:16:02) > Commit 125b310e1d62e3a1dc1e7758563e598957ca7ae4 ("qemu-ga: move > channel/transport functionality into wrapper class") stopped using the > local err variable in channel_event_cb(). > > This patch deletes the unused variable. > > Signed-off-by: Stefa