]> sourceware.org Git - newlib-cygwin.git/commitdiff
cygcheck.cc: Fix missing commas in products array
authorCorinna Vinschen <corinna@vinschen.de>
Sun, 30 Aug 2015 19:46:58 +0000 (21:46 +0200)
committerCorinna Vinschen <corinna@vinschen.de>
Sun, 30 Aug 2015 19:46:58 +0000 (21:46 +0200)
* cygcheck.cc (dump_sysinfo): Fix missing commas in products array.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/utils/ChangeLog
winsup/utils/cygcheck.cc

index d60691afd7f2520830f5095d6bcb5125e7ffd8c0..66bfcb02781b62f83e01905ced55f3e2576b58ab 100644 (file)
@@ -1,3 +1,7 @@
+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
index 4538e1b94001417766b9650dd9038f12f3447e0e..d0ac4a5e9e776f9bfc183e45d2598ef2174a74f7 100644 (file)
@@ -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");
This page took 0.040214 seconds and 5 git commands to generate.