merge from gcc
[deliverable/binutils-gdb.git] / libiberty / choose-temp.c
index 0cba9905d5bb9e41778d5fca5af45ecd532bfc64..b1c2e5b66ba5f76af7816a7ef929c0480c942ba8 100644 (file)
@@ -46,7 +46,7 @@ find one.  The current directory is chosen if all else fails so the
 program is exited if a temporary directory can't be found (@code{mktemp}
 fails).  The buffer for the result is obtained with @code{xmalloc}.
 
-This function is provided for backwards compatability only.  Its use is
+This function is provided for backwards compatibility only.  Its use is
 not recommended.
 
 @end deftypefn
@@ -65,8 +65,7 @@ choose_temp_base (void)
   strcpy (temp_filename, base);
   strcpy (temp_filename + len, TEMP_FILE);
 
-  mktemp (temp_filename);
-  if (strlen (temp_filename) == 0)
+  if (mktemp (temp_filename) == 0)
     abort ();
   return temp_filename;
 }
This page took 0.024728 seconds and 4 git commands to generate.