This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin 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]

[newlib-cygwin] cygcheck.cc: Fix missing commas in products array


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=5a3d536ce12474de24e5f9054cb4d2ba6f87fe38

commit 5a3d536ce12474de24e5f9054cb4d2ba6f87fe38
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Sun Aug 30 21:46:58 2015 +0200

    cygcheck.cc: Fix missing commas in products array
    
    	* cygcheck.cc (dump_sysinfo): Fix missing commas in products array.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/utils/ChangeLog   |  4 ++++
 winsup/utils/cygcheck.cc | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index d60691a..66bfcb0 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,5 +1,9 @@
 2015-08-30  Corinna Vinschen  <corinna@vinschen.de>
 
+	* cygcheck.cc (dump_sysinfo): Fix missing commas in products array.
+
+2015-08-30  Corinna Vinschen  <corinna@vinschen.de>
+
 	* cygcheck.cc (load_cygwin): Only unload cygwin DLL if not running
 	under a debugger.  Explain why.
 
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index 4538e1b..d0ac4a5 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -1612,8 +1612,8 @@ dump_sysinfo ()
  /* 0x00000064 */ " Single Language",
  /* 0x00000065 */ " Home",
  /* 0x00000066 */ "",
- /* 0x00000067 */ " Professional with Media Center"
- /* 0x00000068 */ " Mobile"
+ /* 0x00000067 */ " Professional with Media Center",
+ /* 0x00000068 */ " Mobile",
  /* 0x00000069 */ "",
  /* 0x0000006a */ "",
  /* 0x0000006b */ "",
@@ -1630,8 +1630,8 @@ dump_sysinfo ()
  /* 0x00000076 */ "",
  /* 0x00000077 */ "",
  /* 0x00000078 */ "",
- /* 0x00000079 */ " Education"
- /* 0x0000007a */ " Education N"
+ /* 0x00000079 */ " Education",
+ /* 0x0000007a */ " Education N",
  /* 0x0000007b */ "",
  /* 0x0000007c */ "",
  /* 0x0000007d */ "",
@@ -1642,7 +1642,7 @@ dump_sysinfo ()
  /* 0x00000082 */ "",
  /* 0x00000083 */ "",
  /* 0x00000084 */ "",
- /* 0x00000085 */ " Mobile Enterprise"
+ /* 0x00000085 */ " Mobile Enterprise",
 		};
 	      if (prod == PRODUCT_UNLICENSED)
 		strcat (osname, "Unlicensed");


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