diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-18 12:09:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-18 12:09:37 +0000 |
commit | 4f36b966069e1a75c2c7783c16c8c169e02ce1d2 (patch) | |
tree | 5ed9fc0761e2bb629e3f25ad008564d5240f18b2 /plugins/Sessions | |
parent | e2ed49605db24d54949f603f0e79800796a6b59f (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11509 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Sessions')
-rw-r--r-- | plugins/Sessions/Src/Main.cpp | 2 | ||||
-rw-r--r-- | plugins/Sessions/Src/Sessions.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Sessions/Src/Main.cpp b/plugins/Sessions/Src/Main.cpp index 6a718e975d..54108687db 100644 --- a/plugins/Sessions/Src/Main.cpp +++ b/plugins/Sessions/Src/Main.cpp @@ -30,7 +30,7 @@ bool g_hghostw; HWND hClistControl;
int g_ses_limit;
-size_t g_ses_count;
+int g_ses_count;
bool g_bExclHidden;
bool g_bWarnOnHidden;
bool g_bOtherWarnings;
diff --git a/plugins/Sessions/Src/Sessions.h b/plugins/Sessions/Src/Sessions.h index 46649fce28..abc6a27bf2 100644 --- a/plugins/Sessions/Src/Sessions.h +++ b/plugins/Sessions/Src/Sessions.h @@ -65,7 +65,7 @@ extern HINSTANCE g_hInst; extern MCONTACT session_list_recovered[255];
extern MCONTACT session_list[255];
extern int g_ses_limit;
-extern size_t g_ses_count;
+extern int g_ses_count;
extern bool g_bExclHidden;
extern bool g_bWarnOnHidden;
extern bool g_bOtherWarnings;
|