]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 27 Mar 2000 07:36:16 +0000 (07:36 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 27 Mar 2000 07:36:16 +0000 (07:36 +0000)
* libio/genops.c (_IO_default_xsputn): Little optimization.  Call
_IO_OVERFLOW directly instead through __overflow.

ChangeLog
libio/genops.c

index 7766f1015971e6c0d3c00cc1b0987976caf75e44..dc148d5b74283ddee0e1093285532b72cbefb386 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-03-26  Ulrich Drepper  <drepper@redhat.com>
 
+       * libio/genops.c (_IO_default_xsputn): Little optimization.  Call
+       _IO_OVERFLOW directly instead through __overflow.
+
        * locale/programs/localedef.c (construct_output_path): If path
        contains a / compute the end of the directory name correctly.
 
index a8fce5fa7785230713ef8e2e3e264b62b26d8c62..c59518143f5a138025a0d397510533b19d79635d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1995, 1997-1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU IO Library.
 
    This library is free software; you can redistribute it and/or
@@ -420,7 +420,7 @@ _IO_default_xsputn (f, data, n)
             }
          more -= count;
         }
-      if (more == 0 || __overflow (f, (unsigned char) *s++) == EOF)
+      if (more == 0 || _IO_OVERFLOW (f, (unsigned char) *s++) == EOF)
        break;
       more--;
     }