From ca6fcbbc86009392645e094aa5fed6b34a328a05 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 1 Dec 2021 15:22:08 -0800 Subject: [PATCH] strace: fix m68k build. --- toys/pending/strace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/pending/strace.c b/toys/pending/strace.c index b1cc7323..a44dbdfa 100644 --- a/toys/pending/strace.c +++ b/toys/pending/strace.c @@ -48,7 +48,7 @@ static const char REG_ORDER[] = {0,1,2,3,4,5,8,0}; static const char REG_ORDER[] = {0,1,2,3,4,5,11,6}; #elif defined(__m68k__) // d1,d2,d3,d4,d5,a0,orig_d0,d0 -static const char REG_ORDER[] = {0,1,2,3,4,7,16,14); +static const char REG_ORDER[] = {0,1,2,3,4,7,16,14}; #elif defined(__PPC__) || defined(__PPC64__) static const char REG_ORDER[] = {3,4,5,6,7,8,0,3}; #elif defined(__s390__) // also covers s390x -- 2.39.2