aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-11-05 15:11:22 +0000
committerdrh <drh@noemail.net>2005-11-05 15:11:22 +0000
commit152410fadeed7852c7155fc1da62c0891448d7be (patch)
treea21c701e102e34ca3e8233faf3142674d76add08 /src
parent8a9f38feb2f2f9d9cec7d9da74da559aa2731863 (diff)
downloadsqlite-152410fadeed7852c7155fc1da62c0891448d7be.tar.gz
sqlite-152410fadeed7852c7155fc1da62c0891448d7be.zip
Work around a bug in MSVC++. Ticket #1513. (CVS 2763)
FossilOrigin-Name: 6331860e7754be6e0d2a484d66427947c0781dd6
Diffstat (limited to 'src')
-rw-r--r--src/pager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pager.c b/src/pager.c
index cc91672c6..58918bbdb 100644
--- a/src/pager.c
+++ b/src/pager.c
@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
-** @(#) $Id: pager.c,v 1.216 2005/11/04 22:03:30 drh Exp $
+** @(#) $Id: pager.c,v 1.217 2005/11/05 15:11:23 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -1761,9 +1761,9 @@ void enable_simulated_io_errors(void){
sqlite3_io_error_pending = saved_cnt;
}
#else
-# define clear_simulated_io_error(X)
-# define disable_simulated_io_errors(X)
-# define enable_simulated_io_errors(X)
+# define clear_simulated_io_error()
+# define disable_simulated_io_errors()
+# define enable_simulated_io_errors()
#endif
/*