summaryrefslogtreecommitdiff
path: root/plugins/StopSpamMod/src/utilities.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-08-12 21:04:51 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-08-12 21:04:51 +0000
commitd4c37690295db5515f19a8b1cd221b4222f16eeb (patch)
treebd098d252fcedd637febbddfa1dbf88eef68dc88 /plugins/StopSpamMod/src/utilities.cpp
parent5fea557d4846a9260c8b76f4157f3e722f7ddd2e (diff)
warning fixes
code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@14932 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod/src/utilities.cpp')
-rwxr-xr-xplugins/StopSpamMod/src/utilities.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/StopSpamMod/src/utilities.cpp b/plugins/StopSpamMod/src/utilities.cpp
index 84003bde49..bbbc910ed0 100755
--- a/plugins/StopSpamMod/src/utilities.cpp
+++ b/plugins/StopSpamMod/src/utilities.cpp
@@ -352,9 +352,9 @@ void CleanThread()
for(std::list<std::string>::iterator i = protocols.begin(); i != end; ++i)
{
if(gbDelAllTempory)
- boost::thread *thr = new boost::thread(boost::bind(&CleanProtocolTmpThread, *i));
+ new boost::thread(boost::bind(&CleanProtocolTmpThread, *i));
if(gbDelExcluded)
- boost::thread *thr = new boost::thread(boost::bind(&CleanProtocolExclThread, *i));
+ new boost::thread(boost::bind(&CleanProtocolExclThread, *i));
}
}