Re: [PATCH] intel: fix a conversion format mismatch

2017-03-09 Thread Emil Velikov
Hi Chih-Wei,

On 9 March 2017 at 02:12, Chih-Wei Huang  wrote:
> To avoid the warning:
>
> external/libdrm/intel/intel_bufmgr.c:362:20: warning: more '%' conversions 
> than data arguments [-Wformat]
> fprintf(stderr, "%s: Mappable aperture size hardcoded to 64MiB\n");
>  ~^
>
This seems to depend on the patch from Tomasz, which removes the
libpciaccess dependency and stubs the API.
Personally I don't mind having that one land and if so, this fix
should be squashed.

> Change-Id: I6c1b0a9e3004aacde0d64662de1144cadff30132
Please drop these and use your s-o-b for upstream submissions.

Thanks
Emil
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel


[PATCH] intel: fix a conversion format mismatch

2017-03-08 Thread Chih-Wei Huang
To avoid the warning:

external/libdrm/intel/intel_bufmgr.c:362:20: warning: more '%' conversions than 
data arguments [-Wformat]
fprintf(stderr, "%s: Mappable aperture size hardcoded to 64MiB\n");
 ~^

Change-Id: I6c1b0a9e3004aacde0d64662de1144cadff30132
---
 intel/intel_bufmgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intel/intel_bufmgr.c b/intel/intel_bufmgr.c
index 42f5f62..5bad93f 100644
--- a/intel/intel_bufmgr.c
+++ b/intel/intel_bufmgr.c
@@ -359,7 +359,7 @@ static size_t
 drm_intel_probe_agp_aperture_size(int fd)
 {
/* Nothing seems to rely on this value on Android anyway... */
-   fprintf(stderr, "%s: Mappable aperture size hardcoded to 64MiB\n");
+   fprintf(stderr, "%s: Mappable aperture size hardcoded to 64MiB\n", 
__func__);
return 64 * 1024 * 1024;
 }
 #endif
-- 
1.9.1

___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel