summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-25 07:56:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:04:21 -0500
commit6bbd3b3360e3bc4c1d39f6d3d5d5082fd9b060eb (patch)
tree6297f77492b25e3eece3b42c353e568b701b92de /source4
parentcc11de1e3e938fc65e99e2c597e6f25659371e87 (diff)
downloadsamba-6bbd3b3360e3bc4c1d39f6d3d5d5082fd9b060eb.tar.gz
samba-6bbd3b3360e3bc4c1d39f6d3d5d5082fd9b060eb.tar.bz2
samba-6bbd3b3360e3bc4c1d39f6d3d5d5082fd9b060eb.zip
r15226: Fix order of typedef specification - caught by kblin
(This used to be commit d5d03cdd2398467ecee71bae37238c375baa2395)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/replace/replace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h
index 9be365d4da..77f42acc97 100644
--- a/source4/lib/replace/replace.h
+++ b/source4/lib/replace/replace.h
@@ -206,7 +206,7 @@ int rep_mkstemp(char *temp);
#ifndef HAVE_BOOL
#define __bool_true_false_are_defined
-typedef bool int;
+typedef int bool;
#define false (0)
#define true (1)
#endif