From: Jim Meyering Date: Tue, 21 Dec 2004 21:43:36 +0000 (+0000) Subject: adjust indentation X-Git-Tag: v5.3.0~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71f15c4c41de15a553440f13079a95cdb5de1691;p=thirdparty%2Fcoreutils.git adjust indentation --- diff --git a/m4/mkstemp.m4 b/m4/mkstemp.m4 index 4b036c927a..6a7de94b67 100644 --- a/m4/mkstemp.m4 +++ b/m4/mkstemp.m4 @@ -17,26 +17,26 @@ AC_DEFUN([gl_FUNC_MKSTEMP], [ mkdir conftest.mkstemp ( cd conftest.mkstemp - AC_TRY_RUN([ -# include - int main () - { - int i; - for (i = 0; i < 70; i++) - { - char template[] = "coXXXXXX.tmp"; - int fd = mkstemp (template); - if (fd == -1) - exit (1); - close (fd); - } - exit (0); - } - ], - gl_cv_func_mkstemp_limitations=no, - gl_cv_func_mkstemp_limitations=yes, - gl_cv_func_mkstemp_limitations=yes - ) + AC_TRY_RUN([ +# include + int main () + { + int i; + for (i = 0; i < 70; i++) + { + char template[] = "coXXXXXX.tmp"; + int fd = mkstemp (template); + if (fd == -1) + exit (1); + close (fd); + } + exit (0); + } + ], + gl_cv_func_mkstemp_limitations=no, + gl_cv_func_mkstemp_limitations=yes, + gl_cv_func_mkstemp_limitations=yes + ) ) ] )