diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-18 20:05:08 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-18 20:05:08 +0000 |
commit | 8c5cf9634f560f7dd3976d762573071d9fca31b3 (patch) | |
tree | b313623e6ba187922ce2a8328b1d48b8a9b37b7a /plugins/AVS/src | |
parent | bef8ac146a1f276261ff617fe0f1086bf2f3c85d (diff) |
small code warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@6521 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS/src')
-rw-r--r-- | plugins/AVS/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AVS/src/options.cpp b/plugins/AVS/src/options.cpp index 61eba41b6a..8b1212e04d 100644 --- a/plugins/AVS/src/options.cpp +++ b/plugins/AVS/src/options.cpp @@ -297,7 +297,7 @@ static INT_PTR CALLBACK DlgProcOptionsProtos(HWND hwndDlg, UINT msg, WPARAM wPar {
LVITEM item = {0};
LVCOLUMN lvc = {0};
- UINT64 newItem = 0;
+ int newItem = 0;
dialoginit = TRUE;
TranslateDialogDefault(hwndDlg);
|