diff options
Diffstat (limited to 'plugins/StopSpamPlus/src/events.cpp')
-rw-r--r-- | plugins/StopSpamPlus/src/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StopSpamPlus/src/events.cpp b/plugins/StopSpamPlus/src/events.cpp index a926efd551..2810d8d68d 100644 --- a/plugins/StopSpamPlus/src/events.cpp +++ b/plugins/StopSpamPlus/src/events.cpp @@ -50,7 +50,7 @@ int OnDbEventFilterAdd(WPARAM w, LPARAM l) {
MCONTACT hContact = (MCONTACT)w;
DBEVENTINFO *dbei = (DBEVENTINFO*)l;
- if (dbei == NULL) //fix potential DEP crash
+ if (dbei == nullptr) //fix potential DEP crash
return 0;
// if event is in protocol that is not despammed
|