Merge branch 'wrong_return_type' of https://github.com/Luflosi/kitty

This commit is contained in:
Kovid Goyal 2019-02-22 22:42:32 +05:30
commit ca38568187
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

2
glfw/ibus_glfw.c vendored
View File

@ -56,7 +56,7 @@ test_env_var(const char *name, const char *val) {
return (q && strcmp(q, val) == 0) ? GLFW_TRUE : GLFW_FALSE;
}
static inline GLFWbool
static inline size_t
MIN(size_t a, size_t b) {
return a < b ? a : b;
}