From ea1b066a34dccd3bf1fe8bba52a586fff4158601 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 17 Mar 2015 11:50:35 -0600 Subject: [PATCH] mesa: add void to format_array_format_table_init() declaration Silences an MSVC warning where it's called from call_once(). Reviewed-by: Matt Turner --- src/mesa/main/formats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index 422c9dc46eb..2bc8bcad90b 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -388,7 +388,7 @@ array_formats_equal(const void *a, const void *b) } static void -format_array_format_table_init() +format_array_format_table_init(void) { const struct gl_format_info *info; mesa_array_format array_format; -- 2.30.2