Re: [Mesa-dev] [PATCH] i965: fix build warning on clang

2017-09-17 Thread Tapani Pälli
On 09/15/2017 07:40 PM, Matt Turner wrote: On Thu, Sep 14, 2017 at 12:26 AM, Tapani Pälli wrote: fixes following warning: warning: format specifies type 'long' but the argument has type 'uint64_t' (aka 'unsigned long long') cast is needed to avoid this turning in to another warning on 3

Re: [Mesa-dev] [PATCH] i965: fix build warning on clang

2017-09-15 Thread Matt Turner
On Thu, Sep 14, 2017 at 12:26 AM, Tapani Pälli wrote: > fixes following warning: >warning: format specifies type 'long' but the argument has type 'uint64_t' > (aka 'unsigned long long') > > cast is needed to avoid this turning in to another warning on 32bit build: >warning: format specifi

Re: [Mesa-dev] [PATCH] i965: fix build warning on clang

2017-09-14 Thread Tapani Pälli
On 09/14/2017 09:31 PM, Jordan Justen wrote: On 2017-09-14 00:26:39, Tapani Pälli wrote: fixes following warning: warning: format specifies type 'long' but the argument has type 'uint64_t' (aka 'unsigned long long') cast is needed to avoid this turning in to another warning on 32bit buil

Re: [Mesa-dev] [PATCH] i965: fix build warning on clang

2017-09-14 Thread Jordan Justen
On 2017-09-14 00:26:39, Tapani Pälli wrote: > fixes following warning: >warning: format specifies type 'long' but the argument has type 'uint64_t' > (aka 'unsigned long long') > > cast is needed to avoid this turning in to another warning on 32bit build: >warning: format specifies type 'u

[Mesa-dev] [PATCH] i965: fix build warning on clang

2017-09-14 Thread Tapani Pälli
fixes following warning: warning: format specifies type 'long' but the argument has type 'uint64_t' (aka 'unsigned long long') cast is needed to avoid this turning in to another warning on 32bit build: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t'