#4077: No need to append \n when calling Py_FatalError
+ fix a declaration to make it match the one in pythonrun.h
diff --git a/Python/ast.c b/Python/ast.c
index 9e8df86..5f369b6 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -197,7 +197,7 @@
         default: {
             char buf[128];
 
-            sprintf(buf, "Non-statement found: %d %d\n",
+            sprintf(buf, "Non-statement found: %d %d",
                     TYPE(n), NCH(n));
             Py_FatalError(buf);
         }