We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d5b876 commit c90f2aeCopy full SHA for c90f2ae
src/os_win32.c
@@ -577,7 +577,7 @@ null_libintl_ngettext(
577
const char *msgid_plural,
578
unsigned long n)
579
{
580
- return n == 1 ? msgid : msgid_plural;
+ return (char *)(n == 1 ? msgid : msgid_plural);
581
}
582
583
/*ARGSUSED*/
src/version.c
@@ -763,6 +763,8 @@ static char *(features[]) =
763
764
static int included_patches[] =
765
{ /* Add new patch number below this line */
766
+/**/
767
+ 2156,
768
/**/
769
2155,
770
0 commit comments