*: Fix errors from new linter checks

This commit is contained in:
ZyX
2016-06-10 22:23:56 +03:00
parent 3d64bd2b3a
commit d359bb3f60
24 changed files with 610 additions and 612 deletions

View File

@@ -19,8 +19,8 @@
#define UI(b) (((UIBridgeData *)b)->ui)
// Call a function in the UI thread
#define UI_CALL(ui, name, argc, ...) \
((UIBridgeData *)ui)->scheduler( \
#define UI_CALL(ui, name, argc, ...) \
((UIBridgeData *)ui)->scheduler( \
event_create(1, ui_bridge_##name##_event, argc, __VA_ARGS__), UI(ui))
#define INT2PTR(i) ((void *)(uintptr_t)i)