diff options
author | Chris Robinson <[email protected]> | 2014-04-30 12:53:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-04-30 12:53:52 -0700 |
commit | 804b08e0ca7931c304d6a2686b036a397cb65b0e (patch) | |
tree | 008776da97ac49d0379b3fe1c35553c5e189222d /Alc/helpers.c | |
parent | f15067687326baa4ffe479e13411dbe588242e70 (diff) |
Use ALboolean for al_string_empty's return type
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c index e1e94f10..23953270 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -712,7 +712,7 @@ ALboolean vector_insert(void *ptr, size_t base_size, size_t obj_size, void *ins_ extern inline ALsizei al_string_length(const_al_string str); -extern inline ALsizei al_string_empty(const_al_string str); +extern inline ALboolean al_string_empty(const_al_string str); extern inline const al_string_char_type *al_string_get_cstr(const_al_string str); void al_string_clear(al_string *str) |