diff options
Diffstat (limited to 'plugins/Utils')
-rw-r--r-- | plugins/Utils/mir_buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Utils/mir_buffer.h b/plugins/Utils/mir_buffer.h index a972c9f6c4..5391b1bcf4 100644 --- a/plugins/Utils/mir_buffer.h +++ b/plugins/Utils/mir_buffer.h @@ -34,7 +34,7 @@ static inline size_t __blen(const T *str) template<>
static inline size_t __blen<char>(const char *str)
{
- return strlen(str);
+ return mir_strlen(str);
}
template<>
|