diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-02-21 19:08:24 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-02-21 19:08:24 +0100 |
commit | c9a057bc0497fd201142799d02f046e95236f921 (patch) | |
tree | 769d2b21e8fb23c90734e53e310224319fa8a5be /lib | |
parent | 7e9c735b3ca5ab311011a3d5c8f6f90dc56bb5f4 (diff) | |
download | samba-c9a057bc0497fd201142799d02f046e95236f921.tar.gz samba-c9a057bc0497fd201142799d02f046e95236f921.tar.bz2 samba-c9a057bc0497fd201142799d02f046e95236f921.zip |
pytevent: Fix include path - tevent_util is not installed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tevent/pytevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/pytevent.c b/lib/tevent/pytevent.c index 4c0cbfd3cd..3b45ba1928 100644 --- a/lib/tevent/pytevent.c +++ b/lib/tevent/pytevent.c @@ -29,7 +29,7 @@ #include <tevent.h> #include <stdbool.h> -#include <tevent_util.h> +#include "tevent_util.h" typedef struct { PyObject_HEAD |