diff src/os_win32.c @ 8949:c44ab784f5e5 v7.4.1760

commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 20 20:55:56 2016 +0200 patch 7.4.1760 Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott)
author Christian Brabandt <cb@256bit.org>
date Wed, 20 Apr 2016 21:00:06 +0200
parents c07caeb90a35
children f094d4085014
line wrap: on
line diff
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -1446,7 +1446,9 @@ WaitForChar(long msec)
     INPUT_RECORD    ir;
     DWORD	    cRecords;
     WCHAR	    ch, ch2;
+#ifdef FEAT_TIMERS
     int		    tb_change_cnt = typebuf.tb_change_cnt;
+#endif
 
     if (msec > 0)
 	/* Wait until the specified time has elapsed. */