diff options
author | Martin Schwenke <martin@meltin.net> | 2011-12-15 15:31:47 +1100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-12-15 07:40:33 +0100 |
commit | 0429471fe478b86a9857511a7b841601640c8bac (patch) | |
tree | 5763a1dfacc9ff2ffd87e93e69a71f0d870034c7 /lib/ccan | |
parent | fef4f5193b68598c99949ee2fbd9bee93daf70b1 (diff) | |
download | samba-0429471fe478b86a9857511a7b841601640c8bac.tar.gz samba-0429471fe478b86a9857511a7b841601640c8bac.tar.bz2 samba-0429471fe478b86a9857511a7b841601640c8bac.zip |
lib/ccan: Fix some typos in libccan.m4
Signed-off-by: Martin Schwenke <martin@meltin.net>
Autobuild-User: Rusty Russell <rusty@rustcorp.com.au>
Autobuild-Date: Thu Dec 15 07:40:33 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/ccan')
-rw-r--r-- | lib/ccan/libccan.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ccan/libccan.m4 b/lib/ccan/libccan.m4 index ce71ea2dda..1efa0f0f42 100644 --- a/lib/ccan/libccan.m4 +++ b/lib/ccan/libccan.m4 @@ -236,14 +236,14 @@ if test x"$samba_cv_builtin_types_compatible_p" = xyes ; then [whether we have __builtin_types_compatible_p]) fi -AC_CACHE_CHECK([whether we have __builtin_choose_exptr], +AC_CACHE_CHECK([whether we have __builtin_choose_expr], samba_cv_builtin_choose_expr, [ AC_LINK_IFELSE( [int main(void) { return __builtin_choose_expr(1, 0, "garbage"); }], - samba_cv_builtin_types_choose_expr=yes) + samba_cv_builtin_choose_expr=yes) ]) if test x"$samba_cv_builtin_choose_expr" = xyes ; then |