summaryrefslogtreecommitdiff
path: root/plugins/MimCmd/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-16 19:30:47 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-16 19:30:47 +0000
commit90b62d09470b28b2d39e073b4baee403ffc86903 (patch)
tree1b23e89358cbb0ad72707435bdd33a3f8629b314 /plugins/MimCmd/src
parent79652f4c79e76d8999478ec5b8027ccb742a4bb3 (diff)
crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14218 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MimCmd/src')
-rw-r--r--plugins/MimCmd/src/MimCmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MimCmd/src/MimCmd.cpp b/plugins/MimCmd/src/MimCmd.cpp
index fe3c98b56a..12583d3f88 100644
--- a/plugins/MimCmd/src/MimCmd.cpp
+++ b/plugins/MimCmd/src/MimCmd.cpp
@@ -71,7 +71,7 @@ void ShowVersion()
int main(int argc, char *argv[])
{
- if (argc == 2 && mir_strcmp(argv[1], "-v") == 0) {
+ if (argc == 2 && !strcmp(argv[1], "-v")) {
ShowVersion();
return 0;
}