* io/unit.c (get_unit): Remove superfluous if.
authorPaul Brook <paul@codesourcery.com>
Tue, 31 Aug 2004 18:59:42 +0000 (18:59 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Tue, 31 Aug 2004 18:59:42 +0000 (18:59 +0000)
From-SVN: r86838

libgfortran/ChangeLog
libgfortran/io/unit.c

index 1c76245bb391509931d501699599d1933b19785c..641f32d4dce0b33af279fb43f1ecc2b89fe0c85a 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-31  Paul Brook  <paul@codesourcery.com>
+
+       * io/unit.c (get_unit): Remove superfluous if.
+
 2004-08-31  Paul Brook  <paul@codesourcery.com>
 
        * io/transfer.c (read_sf): Rename uinty to readlen.  Detect EOF.
index c3d6e7eca1314ea72d1308754ef5294c3b28c6cb..4b09884e35b4d7948375b93a94b10e7db41209f2 100644 (file)
@@ -264,10 +264,8 @@ get_unit (int read_flag)
   /* Has to be an external unit */
 
   u = find_unit (ioparm.unit);
-  if (u != NULL)
-    return u;
 
-  return NULL;
+  return u;
 }