From 4d8d70c251bae530d5a410e24fa597aea51e4f78 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 22 Jul 2015 15:26:40 +0000 Subject: Spamotron: vc2015 compilation fix git-svn-id: http://svn.miranda-ng.org/main/trunk@14632 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Spamotron/src/bayes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Spamotron/src') diff --git a/plugins/Spamotron/src/bayes.cpp b/plugins/Spamotron/src/bayes.cpp index 5fde61bc34..1b79ccf76a 100644 --- a/plugins/Spamotron/src/bayes.cpp +++ b/plugins/Spamotron/src/bayes.cpp @@ -30,7 +30,7 @@ int CheckBayes() else strncpy_s(bayesdb_fullpath, bayesdb_tmp, _TRUNCATE); - mir_strcat(bayesdb_fullpath, "\\"BAYESDB_FILENAME); + mir_strcat(bayesdb_fullpath, "\\" BAYESDB_FILENAME); if (_access(bayesdb_fullpath,0) == 0) return 1; @@ -52,13 +52,13 @@ int OpenBayes() if (tmp[mir_strlen(tmp)-1] == '\\') tmp[mir_strlen(tmp)-1] = 0; mir_strcpy(bayesdb_fullpath, tmp); - mir_strcat(bayesdb_fullpath, "\\"BAYESDB_PATH); + mir_strcat(bayesdb_fullpath, "\\" BAYESDB_PATH); mir_free(tmp); } CreateDirectoryTree(bayesdb_fullpath); - mir_strcat(bayesdb_fullpath, "\\"BAYESDB_FILENAME); + mir_strcat(bayesdb_fullpath, "\\" BAYESDB_FILENAME); bayesdb_fullpath_utf8 = mir_utf8encode(bayesdb_fullpath); if (sqlite3_open(bayesdb_fullpath_utf8, &bayesdb) == SQLITE_OK) -- cgit v1.2.3