Re: [PATCH] compositor-drm: pass NULL to mmap() instead of 0 as the address

2015-11-12 Thread Derek Foreman
On 10/11/15 09:40 AM, Chris Michael wrote: > mmap() function expects to be passed a void pointer as the address > here. In order for the kernel to choose a proper address, we should be > passing NULL instead of 0 Don't like this text because I think it accidentally implies the kernel will choose a

[PATCH] compositor-drm: pass NULL to mmap() instead of 0 as the address

2015-11-10 Thread Chris Michael
mmap() function expects to be passed a void pointer as the address here. In order for the kernel to choose a proper address, we should be passing NULL instead of 0 Signed-off-by: Chris Michael --- src/compositor-drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compos