diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-10 12:49:16 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-10 12:49:16 +0000 |
commit | 442d81842849999e4dd17f601d83c8441338a79c (patch) | |
tree | 8948077a285e445601ed7f35d686560dc71ec5fa | |
parent | 35a5cb85326728de85225e8e5f09e92773dd181f (diff) |
Tox: warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12730 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/Tox/src/tox_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_core.cpp b/protocols/Tox/src/tox_core.cpp index 6ca63506b0..a23939713e 100644 --- a/protocols/Tox/src/tox_core.cpp +++ b/protocols/Tox/src/tox_core.cpp @@ -6,7 +6,7 @@ bool CToxProto::InitToxCore() TOX_ERR_OPTIONS_NEW error;
Tox_Options *options = tox_options_new(&error);
- if (error != TOX_ERR_OPTIONS_NEW::TOX_ERR_OPTIONS_NEW_OK)
+ if (error != TOX_ERR_OPTIONS_NEW_OK)
{
debugLogA(__FUNCTION__": failed to initialize tox options (%d)", error);
return false;
|