diff options
| author | Borislav Stanimirov <b.stanimirov@abv.bg> | 2020-02-18 14:52:55 +0200 |
|---|---|---|
| committer | Borislav Stanimirov <b.stanimirov@abv.bg> | 2020-02-18 14:52:55 +0200 |
| commit | e9ffae17bcc9ce3edd35752d4e16f0e85ea93080 (patch) | |
| tree | 23019ccc5675080486c9a9f10b4cdba6a6fdb363 /sokol_app.h | |
| parent | 196aa649f15a7ef05af64fedf5c90f64dc6d2fdd (diff) | |
sokol_app.h x11: fixed unused variable warning
Diffstat (limited to 'sokol_app.h')
| -rw-r--r-- | sokol_app.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_app.h b/sokol_app.h index 6970add1..5ca30195 100644 --- a/sokol_app.h +++ b/sokol_app.h @@ -6443,7 +6443,7 @@ static const struct _sapp_x11_codepair { { 0xffbd /*XKB_KEY_KP_Equal*/, '=' } }; -_SOKOL_PRIVATE int _sapp_x11_error_handler(Display* display, XErrorEvent* event) { +_SOKOL_PRIVATE int _sapp_x11_error_handler(Display*, XErrorEvent* event) { _sapp_x11_error_code = event->error_code; return 0; } |