diff options
| author | Pietro Gagliardi <[email protected]> | 2014-12-01 15:18:12 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-12-01 15:18:12 -0500 |
| commit | 16a88c548bc94eea245e204e56f598f2cad2a924 (patch) | |
| tree | 406f48dac3a1de71e4ae91fa4dfa0421b89cd055 /wintable | |
| parent | 84d66b6b50a3956015cc8bf0e78d6373ebdb4ba4 (diff) | |
Changed the handler functions array to be const, as that's the intent.
Diffstat (limited to 'wintable')
| -rw-r--r-- | wintable/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, }; |
