ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX"

diff --git a/shell/ash.c b/shell/ash.c
index 05e2f63..295418c 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -10032,7 +10032,7 @@
 	char msg[64];
 	int l;
 
-	l = sprintf(msg, "%s unexpected", tokname(lasttoken));
+	l = sprintf(msg, "unexpected %s", tokname(lasttoken));
 	if (token >= 0)
 		sprintf(msg + l, " (expecting %s)", tokname(token));
 	raise_error_syntax(msg);