VirtGL: Fix warnings about void missing in params
authorFrédéric Dalleau <frederic.dalleau@linux.intel.com>
Wed, 4 Sep 2013 09:05:58 +0000 (11:05 +0200)
committerjinhyung.jo <jinhyung.jo@samsung.com>
Wed, 11 Sep 2013 09:15:53 +0000 (18:15 +0900)
Change-Id: If1f785276f758bb750164a87443965d2ff10a1bf

tizen/src/hw/opengl_exec.c

index 8f3a91db765bb867ca94816feda507662aae6d61..c18bcceab010326ce1aa0756e3244ad55e0886cd 100644 (file)
@@ -346,7 +346,8 @@ typedef struct {
 
 static ProcessState processes[MAX_HANDLED_PROCESS];
 
-static char *strip_extensions(const char *avail, const char *ext[]) {
+static char *strip_extensions(const char *avail, const char *ext[])
+{
     char *pos, *supported, *srcp;
 
     supported = (char *)g_malloc(strlen(avail) + 2);
@@ -385,7 +386,8 @@ static const char *glx_ext_supported[] = {
     0
 };
 
-static char *supported_glx_extensions() {
+static char *supported_glx_extensions(void)
+{
     static char *supported;
 
     if(!supported)
@@ -519,7 +521,8 @@ static const char *gl_ext_supported[] = {
     0
 };
 
-static char *compute_gl_extensions() {
+static char *compute_gl_extensions(void)
+{
     static char *supported;
 
     if(!supported)
@@ -642,7 +645,7 @@ static inline void resize_surface(ProcessState *process, QGloSurface *qsurface,
 }
 
 
-void init_process_tab()
+static void init_process_tab(void)
 {
     memset(processes, 0, sizeof(processes));
 }