This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.29.9000-50-gfb25b13


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  fb25b1356ae6a0b2d27a307091ad4f384814cc77 (commit)
      from  32ea72999693b98e41172e42256cda65dfda7838 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fb25b1356ae6a0b2d27a307091ad4f384814cc77

commit fb25b1356ae6a0b2d27a307091ad4f384814cc77
Author: TAMUKI Shoichi <tamuki@linet.gr.jp>
Date:   Mon Feb 11 12:13:55 2019 +0900

    Fix a few whitespace arrangement inconsistencies in time/strftime_l.c
    
    Having checked the arrangement of whitespace in time/strftime_l.c
    using "unexpand" and "unexpand -a" command, three inconsistencies are
    detected.  So fix them for consistency.
    
    ChangeLog:
    
    	* time/strftime_l.c: Fix a few whitespace arrangement inconsistencies.

diff --git a/ChangeLog b/ChangeLog
index 07560f9..f12f435 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-11  TAMUKI Shoichi  <tamuki@linet.gr.jp>
+
+	* time/strftime_l.c: Fix a few whitespace arrangement inconsistencies.
+
 2019-02-08  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/powerpc/bits/mathinline.h: Remove.
diff --git a/time/strftime_l.c b/time/strftime_l.c
index cb3b8d3..98c35d5 100644
--- a/time/strftime_l.c
+++ b/time/strftime_l.c
@@ -562,7 +562,7 @@ __strftime_internal (CHAR_T *s, size_t maxsize, const CHAR_T *format,
       int pad = 0;		/* Padding for number ('-', '_', or 0).  */
       int modifier;		/* Field modifier ('E', 'O', or 0).  */
       int digits;		/* Max digits for numeric format.  */
-      int number_value; 	/* Numeric value to be printed.  */
+      int number_value;		/* Numeric value to be printed.  */
       int negative_number;	/* 1 if the number is negative.  */
       const CHAR_T *subfmt;
       CHAR_T *bufp;
@@ -992,7 +992,7 @@ __strftime_internal (CHAR_T *s, size_t maxsize, const CHAR_T *format,
 	    do
 	      *--bufp = u % 10 + L_('0');
 	    while ((u /= 10) != 0);
-  	  }
+	  }
 
 	do_number_sign_and_padding:
 	  if (negative_number)
@@ -1136,7 +1136,7 @@ __strftime_internal (CHAR_T *s, size_t maxsize, const CHAR_T *format,
 	  DO_NUMBER (2, tp->tm_sec);
 
 	case L_('s'):		/* GNU extension.  */
-  	  {
+	  {
 	    struct tm ltm;
 	    time_t t;
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    4 ++++
 time/strftime_l.c |    6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]