From 20fc06c5dc5a40484ec1e96e59e13cdbb8e5e88b Mon Sep 17 00:00:00 2001 From: keie Date: Fri, 11 Jan 1985 13:42:51 +0000 Subject: [PATCH] The previous fix produced an array in which the values were one off. This has been fixed. --- lang/cem/ctest/ctstruct/str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/ctest/ctstruct/str.c b/lang/cem/ctest/ctstruct/str.c index 79fb2866..584f5ba5 100644 --- a/lang/cem/ctest/ctstruct/str.c +++ b/lang/cem/ctest/ctstruct/str.c @@ -153,7 +153,7 @@ struct w3 setp1(count) { return(myp) ; } myp = setp1(count-1) ; - myp.w3_a[count-1] = 99-count ; + myp.w3_a[count-1] = 99-count-1 ; return(myp) ; }