diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-29 18:48:29 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-03-29 21:34:29 +1100 |
commit | 08faa3a43c26f8cc637969d2b216f2efea9099d9 (patch) | |
tree | 4c754737c4643b26580c3639fc826cd3926a3c85 /lib/talloc | |
parent | b60da39da6e1d1025de4bb200f39f9821f01c1d6 (diff) | |
download | samba-08faa3a43c26f8cc637969d2b216f2efea9099d9.tar.gz samba-08faa3a43c26f8cc637969d2b216f2efea9099d9.tar.xz samba-08faa3a43c26f8cc637969d2b216f2efea9099d9.zip |
talloc: testsuite should use <talloc.h> not "talloc.h"
if we are using the system talloc, the testsuite needs to use the
system talloc.h
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/testsuite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/talloc/testsuite.c b/lib/talloc/testsuite.c index 08aa20863a..f33805d6b0 100644 --- a/lib/talloc/testsuite.c +++ b/lib/talloc/testsuite.c @@ -25,7 +25,7 @@ #include "replace.h" #include "system/time.h" -#include "talloc.h" +#include <talloc.h> static struct timeval timeval_current(void) { |