Re: [oe] [PATCH][meta-networking] spice: fix compile error on 32bit system

2018-09-13 Thread Khem Raj
On Thu, Sep 13, 2018 at 12:00 AM Changqing Li wrote: > > > > On 09/13/2018 01:58 PM, Khem Raj wrote: > > On Wed, Sep 12, 2018 at 10:38 PM wrote: > > From: Changqing Li > > Fix below compile error on 32bit system, since input argument > is uLong, but use format %d: > format '%d' expects

Re: [oe] [PATCH][meta-networking] spice: fix compile error on 32bit system

2018-09-13 Thread Changqing Li
On 09/13/2018 03:00 PM, Changqing Li wrote: On 09/13/2018 01:58 PM, Khem Raj wrote: On Wed, Sep 12, 2018 at 10:38 PM wrote: From: Changqing Li Fix below compile error on 32bit system,  since input argument is uLong, but use format %d: format '%d' expects argument of type 'int', but

Re: [oe] [PATCH][meta-networking] spice: fix compile error on 32bit system

2018-09-13 Thread Changqing Li
On 09/13/2018 01:58 PM, Khem Raj wrote: On Wed, Sep 12, 2018 at 10:38 PM wrote: From: Changqing Li Fix below compile error on 32bit system, since input argument is uLong, but use format %d: format '%d' expects argument of type 'int', but argument 6 has type 'long unsigned int'

Re: [oe] [PATCH][meta-networking] spice: fix compile error on 32bit system

2018-09-12 Thread Khem Raj
On Wed, Sep 12, 2018 at 10:38 PM wrote: > > From: Changqing Li > > Fix below compile error on 32bit system, since input argument > is uLong, but use format %d: > format '%d' expects argument of type 'int', but argument 6 has type > 'long unsigned int' [-Werror=format=] > > Signed-off-by:

[oe] [PATCH][meta-networking] spice: fix compile error on 32bit system

2018-09-12 Thread changqing.li
From: Changqing Li Fix below compile error on 32bit system, since input argument is uLong, but use format %d: format '%d' expects argument of type 'int', but argument 6 has type 'long unsigned int' [-Werror=format=] Signed-off-by: Changqing Li ---