From 9d32b9cd791fb5f51dad17567152c70a8511a500 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Thu, 25 Jul 2013 20:15:05 +0000 Subject: replace sprintf to mir_snprintf (part 6) git-svn-id: http://svn.miranda-ng.org/main/trunk@5485 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Utils/mir_buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Utils') 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(&str[len], size - len - 1, app, arg); + total = __bvsnprintf(&str[len], size - len - 1, app, arg); //!!!!!!!!!!!! if (total < 0) total = size - len - 1; len += total; -- cgit v1.2.3