doc: use ASCII in .texi files where UTF-8 isn't needed
[gnulib.git] / lib / tmpfile-safer.c
index e8d05ae..f0fe246 100644 (file)
@@ -1,5 +1,5 @@
 /* Invoke tmpfile, but avoid some glitches.
-   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2009-2014 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -41,28 +41,28 @@ tmpfile_safer (void)
       int fd = fileno (fp);
 
       if (0 <= fd && fd <= STDERR_FILENO)
-       {
-         int f = dup_safer (fd);
-
-         if (f < 0)
-           {
-             int e = errno;
-             fclose (fp);
-             errno = e;
-             return NULL;
-           }
-
-         /* Keep the temporary file in binary mode, on platforms
-            where that matters.  */
-         if (fclose (fp) != 0
-             || ! (fp = fdopen (f, O_BINARY ? "wb+" : "w+")))
-           {
-             int e = errno;
-             close (f);
-             errno = e;
-             return NULL;
-           }
-       }
+        {
+          int f = dup_safer (fd);
+
+          if (f < 0)
+            {
+              int e = errno;
+              fclose (fp);
+              errno = e;
+              return NULL;
+            }
+
+          /* Keep the temporary file in binary mode, on platforms
+             where that matters.  */
+          if (fclose (fp) != 0
+              || ! (fp = fdopen (f, O_BINARY ? "wb+" : "w+")))
+            {
+              int e = errno;
+              close (f);
+              errno = e;
+              return NULL;
+            }
+        }
     }
 
   return fp;