diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 21:06:11 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 21:06:11 +0000 |
commit | 5b3b0020dd6b3797a5808c7362e358df48bd4e49 (patch) | |
tree | 9ee3e4de8b8f04a8faf4186ae2e1f84c3ef21b17 /plugins/Scriver/cmdlist.cpp | |
parent | 449553a9543c7ecc601f74c4abccc07d13521b15 (diff) |
Scriver:
plusified
git-svn-id: http://svn.miranda-ng.org/main/trunk@591 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/cmdlist.cpp')
-rw-r--r-- | plugins/Scriver/cmdlist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/cmdlist.cpp b/plugins/Scriver/cmdlist.cpp index e6fffda347..8f8d5b1524 100644 --- a/plugins/Scriver/cmdlist.cpp +++ b/plugins/Scriver/cmdlist.cpp @@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. TCmdList *tcmdlist_append(TCmdList *list, const char *data, int maxSize, BOOL temporary) {
TCmdList *n;
- TCmdList *new_list = mir_alloc(sizeof(TCmdList));
+ TCmdList *new_list = (TCmdList *)mir_alloc(sizeof(TCmdList));
TCmdList *attach_to = NULL;
if (!data) {
@@ -74,7 +74,7 @@ TCmdList *tcmdlist_remove(TCmdList *list, TCmdList *n) { TCmdList *tcmdlist_append2(TCmdList *list, HANDLE hContact, const char *data) {
TCmdList *n;
- TCmdList *new_list = mir_alloc(sizeof(TCmdList));
+ TCmdList *new_list = (TCmdList *)mir_alloc(sizeof(TCmdList));
TCmdList *attach_to = NULL;
if (!data) {
|