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

Reply via email to