From 873e090be37a3128f73d87988c2981dbfcee6601 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 20 Mar 2003 01:05:22 +0000 Subject: Merge of compiler warning fixups. (This used to be commit 0308a0a11265050f53fc7e8e03f8e17b04adb45d) --- source3/python/py_tdb.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/python/py_tdb.c') diff --git a/source3/python/py_tdb.c b/source3/python/py_tdb.c index e525422a30..37f64ce780 100644 --- a/source3/python/py_tdb.c +++ b/source3/python/py_tdb.c @@ -27,6 +27,14 @@ */ #include "includes.h" + +/* This symbol is used in both includes.h and Python.h which causes an + annoying compiler warning. */ + +#ifdef HAVE_FSTAT +#undef HAVE_FSTAT +#endif + #include "Python.h" /* Tdb exception */ -- cgit