From 16a88c548bc94eea245e204e56f598f2cad2a924 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 1 Dec 2014 15:18:12 -0500 Subject: [PATCH] Changed the handler functions array to be const, as that's the intent. --- wintable/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wintable/main.c b/wintable/main.c index d8eae68..7d70446 100644 --- a/wintable/main.c +++ b/wintable/main.c @@ -103,7 +103,7 @@ struct table { typedef BOOL (*handlerfunc)(struct table *, UINT, WPARAM, LPARAM, LRESULT *); -handlerfunc handlerfuncs[] = { +const handlerfunc handlerfuncs[] = { APIHandler, NULL, };