Fix function returning the wrong type

This commit is contained in:
Luflosi 2019-02-22 14:50:32 +01:00
parent 6bbd33eca4
commit a653c17e8a
No known key found for this signature in database
GPG Key ID: 14140F703B7D8362

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; return (q && strcmp(q, val) == 0) ? GLFW_TRUE : GLFW_FALSE;
} }
static inline GLFWbool static inline size_t
MIN(size_t a, size_t b) { MIN(size_t a, size_t b) {
return a < b ? a : b; return a < b ? a : b;
} }