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 5ea50c0 commit 32679a2Copy full SHA for 32679a2
src/version.c
@@ -728,6 +728,8 @@ static char *(features[]) =
728
729
static int included_patches[] =
730
{ /* Add new patch number below this line */
731
+/**/
732
+ 835,
733
/**/
734
834,
735
src/xxd/xxd.c
@@ -729,9 +729,10 @@ main(argc, argv)
if (c == EOF && ferror(fp))
die(2);
- if (p)
- if (fputs("\n};\n" + 3 * (fp == stdin), fpo) == EOF)
- die(3);
+ if (p && fputs("\n", fpo) == EOF)
+ die(3);
+ if (fputs("};\n" + 3 * (fp == stdin), fpo) == EOF)
736
737
if (fp != stdin)
738
{
0 commit comments