diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2011-01-08 17:55:36 +0000 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2011-01-08 17:55:36 +0000 |
commit | 9e39496f69cd95c084ad78c44cfe5bc55b09b5bc (patch) | |
tree | 170420e04bb379630ff8062559395609edb0770a | |
parent | b6de5169318881d6c9a7c132111a8425ea6a9c07 (diff) |
configure.in: fix the test code alignment.
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 9fcfbf5f..a905051f 100644 --- a/configure.in +++ b/configure.in @@ -348,11 +348,11 @@ if test "x$iconv_ok" = "xyes"; then AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <iconv.h> ]],[[ - const char *inPtr; - char *outPtr; - size_t inLeft = 0, outRoom = 0; - iconv_t encoder = iconv_open("ASCII", "UTF-8"); - iconv(encoder, &inPtr, &inLeft, &outPtr, &outRoom); +const char *inPtr; +char *outPtr; +size_t inLeft = 0, outRoom = 0; +iconv_t encoder = iconv_open("ASCII", "UTF-8"); +iconv(encoder, &inPtr, &inLeft, &outPtr, &outRoom); ]])], iconv_old=yes,iconv_old=no) AC_LANG_POP([C++]) |