Re: [Spice-devel] [vdagent-win PATCH v2] fix format string for Visual Studio

2017-07-24 Thread Christophe Fergeau
Acked-by: Christophe Fergeau On Mon, Jul 24, 2017 at 04:57:53PM +0100, Frediano Ziglio wrote: > The "z" size specifier is not supported by Visual Studio. > Cast to unsigned long and use "l" specifier as the type has > enough precision for this vector. > > Signed-off-by: Frediano Ziglio > --- >

[Spice-devel] [vdagent-win PATCH v2] fix format string for Visual Studio

2017-07-24 Thread Frediano Ziglio
The "z" size specifier is not supported by Visual Studio. Cast to unsigned long and use "l" specifier as the type has enough precision for this vector. Signed-off-by: Frediano Ziglio --- vdagent/desktop_layout.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Changes since v1: - use c