Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2015-08-30 22:46:58 +0300
committerCorinna Vinschen <corinna@vinschen.de>2015-08-30 22:46:58 +0300
commit5a3d536ce12474de24e5f9054cb4d2ba6f87fe38 (patch)
treeb9e1de47695cea496748ea879786a043523bbb8c /winsup
parente3de6b0a4d7fc1f00b5961edc9e8e5a7a9e0a09e (diff)
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>
Diffstat (limited to 'winsup')
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/cygcheck.cc10
2 files changed, 9 insertions, 5 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index d60691afd..66bfcb027 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 4538e1b94..d0ac4a5e9 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");