diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-02 23:40:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-02 23:40:19 +0200 |
commit | 22f633d09478fae37c1b77fb54b267d57a21a6d8 (patch) | |
tree | 0e3de6fb0ef831cf57d20218ece21ae0c5399b75 /lib | |
parent | 5cdef708230bfca19d552ffe5476fe9fcdf850c6 (diff) | |
download | samba-22f633d09478fae37c1b77fb54b267d57a21a6d8.tar.gz samba-22f633d09478fae37c1b77fb54b267d57a21a6d8.tar.bz2 samba-22f633d09478fae37c1b77fb54b267d57a21a6d8.zip |
pytdb: Include Python.h first to prevent warning.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/pytdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c index 009063359f..15fec21e53 100644 --- a/lib/tdb/pytdb.c +++ b/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 |