diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-12 21:04:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-12 21:04:51 +0000 |
commit | d4c37690295db5515f19a8b1cd221b4222f16eeb (patch) | |
tree | bd098d252fcedd637febbddfa1dbf88eef68dc88 /plugins/StopSpamMod/src/utilities.cpp | |
parent | 5fea557d4846a9260c8b76f4157f3e722f7ddd2e (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-x | plugins/StopSpamMod/src/utilities.cpp | 4 |
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));
}
}
|