From 7352dfc0bb234b94fafb75caa714091fe1e7ba6a Mon Sep 17 00:00:00 2001 From: Mohammad-Reza Nabipoor Date: Mon, 15 Dec 2025 03:27:36 +0100 Subject: [PATCH] a68: fix comment and magic number in ga68-exports.pk Signed-off-by: Mohammad-Reza Nabipoor gcc/algol68/ChangeLog * ga68-exports.pk: Fix comment and value for magic number. --- gcc/algol68/ga68-exports.pk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/algol68/ga68-exports.pk b/gcc/algol68/ga68-exports.pk index 86484b8d889..01de350ec40 100644 --- a/gcc/algol68/ga68-exports.pk +++ b/gcc/algol68/ga68-exports.pk @@ -201,7 +201,7 @@ type ga68_mode = Mode extracts represent declarations of mode indications, like for example `mode Foo = struct (int i, real r)'. - Identifier extracts represent declarations of constans, variables, + Identifier extracts represent declarations of constants, variables, procedures and operators. Examples are `real pi = 3.14', `int counter', `proc double = (int a) int : a * 2' and `op // = (int a, b) int: a % b'. @@ -276,7 +276,7 @@ type ga68_extract = type ga68_module = struct { - uint<8>[2] magic : magic == [0x0aUB, 0xadUB]; + uint<8>[2] magic : magic == [0x0aUB, 0x68UB]; uint<16> version : version == ga68_exports_ver; /* Module identification. -- 2.47.3