>>> On 20.09.16 at 02:19, <boris.ostrov...@oracle.com> wrote:
> --- a/tools/firmware/hvmloader/util.h
> +++ b/tools/firmware/hvmloader/util.h
> @@ -47,7 +47,7 @@ void __bug(char *file, int line) __attribute__((noreturn));
>  #define max_t(type,x,y) \
>          ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
>  
> -static inline int test_bit(unsigned int b, void *p)
> +static inline int test_bit(unsigned int b, const void *p)
>  {
>      return !!(((uint8_t *)p)[b>>3] & (1u<<(b&7)));

But then please also avoid casting away constness here. With that
corrected,
Reviewed-by: Jan Beulich <jbeul...@suse.com>

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

Reply via email to