OSDN Git Service

va.h: fix compile warning
authorLi Zhijian <zhijianx.li@intel.com>
Tue, 22 Nov 2016 04:44:05 +0000 (12:44 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Tue, 22 Nov 2016 04:49:44 +0000 (12:49 +0800)
If we specify compiling option with "-Werror=strict-prototypes", we
will get the following error:
va/va.h:294:1: error: function declaration isn't a prototype [-Werror=strict-prototypes]
typedef int (*VAPrivFunc)();

This patch declares the VAPrivFunc with parameter 'void', to make the
compiler happy.

Signed-off-by: Li Zhijian <zhijianx.li@intel.com>
va/va.h

diff --git a/va/va.h b/va/va.h
index 153a89b..8791906 100644 (file)
--- a/va/va.h
+++ b/va/va.h
@@ -291,7 +291,7 @@ const char *vaQueryVendorString (
     VADisplay dpy
 );
 
-typedef int (*VAPrivFunc)();
+typedef int (*VAPrivFunc)(void);
 
 /**
  * Return a function pointer given a function name in the library.