diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-02-06 07:06:21 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-02-06 07:06:21 +0000 |
commit | 890f005fb098f226924dd04eb402a8dc8490a753 (patch) | |
tree | e54aca868d29048cbf51e0486fc620734364ca87 /plugins | |
parent | 292db3d90d61fd3d58b2004853b42c847b0c856a (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12015 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CmdLine/src/mimcmd_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp index 15ce90a618..0d1fa34368 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -175,7 +175,7 @@ int ParseValueParam(char *param, void *&result) char *stop;
* ((long *) result) = strtol(param + 1, &stop, 10);
- return (*stop == 0) ? VALUE_DWORD : VALUE_ERRORok;
+ return (*stop == 0) ? VALUE_DWORD : VALUE_ERROR;
}
default:
return VALUE_UNKNOWN;
|