fix error message in ast.c (#6776)

small_stmt -> compound_stmt
diff --git a/Python/ast.c b/Python/ast.c
index 0d692ff..03a489a 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -4063,7 +4063,7 @@
                 return ast_for_async_stmt(c, ch);
             default:
                 PyErr_Format(PyExc_SystemError,
-                             "unhandled small_stmt: TYPE=%d NCH=%d\n",
+                             "unhandled compound_stmt: TYPE=%d NCH=%d\n",
                              TYPE(n), NCH(n));
                 return NULL;
         }