diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-02 23:40:19 +0200 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2010-10-07 15:18:30 +1030 |
commit | d8d8778aaf8f6fa7056b915a2bb71076d33c8c2d (patch) | |
tree | 9f1d8b4d2e8a563328a2111af42731c96af72d51 /ctdb/lib | |
parent | 5f2bb5c83a6171db1a7e107d4385d080a2ca6ec2 (diff) | |
download | samba-d8d8778aaf8f6fa7056b915a2bb71076d33c8c2d.tar.gz samba-d8d8778aaf8f6fa7056b915a2bb71076d33c8c2d.tar.xz samba-d8d8778aaf8f6fa7056b915a2bb71076d33c8c2d.zip |
pytdb: Include Python.h first to prevent warning.
(This used to be ctdb commit 247dacde0d0de1358cc2c27d08914be605272023)
Diffstat (limited to 'ctdb/lib')
-rw-r--r-- | ctdb/lib/tdb/pytdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/lib/tdb/pytdb.c b/ctdb/lib/tdb/pytdb.c index 009063359f7..15fec21e530 100644 --- a/ctdb/lib/tdb/pytdb.c +++ b/ctdb/lib/tdb/pytdb.c @@ -24,10 +24,10 @@ License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include <Python.h> #include "replace.h" #include "system/filesys.h" -#include <Python.h> #ifndef Py_RETURN_NONE #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None #endif |