diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-01-19 12:25:51 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-01-19 12:25:51 +0000 |
commit | 7440413a20bb80c13a8565a8f851dd7167660a9c (patch) | |
tree | 37b452148e6e08ef27908130c9bf7886cc09643b | |
parent | 9c0a0bbabe516f824d89bd8e18413ce07a5b6b97 (diff) |
cosmetics
git-svn-id: http://svn.miranda-ng.org/main/trunk@7756 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-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 b06c70bf4e..cb9e8d17d8 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -1978,7 +1978,7 @@ void HandleHistoryCommand(PCommand command, TArgument *argv, int argc, PReply re }
else if (_stricmp(cmd, "show") == 0) {
reply->code = MIMRES_SUCCESS;
- mir_snprintf(reply->message, reply->cMessage, Translate("Contact '%s' has '%d' events in history."), contact, db_event_count(hContact));
+ mir_snprintf(reply->message, reply->cMessage, Translate("Contact '%s' has %d events in history."), contact, db_event_count(hContact));
}
else HandleUnknownParameter(command, cmd, reply);
}
|