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 4c49570175..1461be9f61 100644 --- a/plugins/Utils/mir_buffer.h +++ b/plugins/Utils/mir_buffer.h @@ -244,7 +244,7 @@ class Buffer va_list arg;
va_start(arg, app);
- total = __bvsnprintf<T>(&str[len], size - len - 1, app, arg);
+ total = __bvsnprintf<T>(&str[len], size - len - 1, app, arg); //!!!!!!!!!!!!
if (total < 0)
total = size - len - 1;
len += total;
|