diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 21:45:46 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 21:45:46 +0100 |
commit | abbb4897eaa6564ea7f91dc033f2e6ca39da88c2 (patch) | |
tree | 3f7da0b4fc49564e59ba098ceff2d5115e1e53e1 /src/common/hexchat.c | |
parent | d0b5d53f92027863292116181d75fd0a68075003 (diff) |
Fix missing variable
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index d33bba9b..b10b2af5 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -952,11 +952,11 @@ enum_windows_impl (HWND current_window, LPARAM lParam) int main (int argc, char *argv[]) { + int i; int ret; #ifdef WIN32 char hexchat_lang[13]; /* LC_ALL= plus 5 chars of hex_gui_lang and trailing \0 */ - int i; HANDLE mutex; #endif |