aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-10-10 22:34:17 +0200
committerlemon <lsof@mailbox.org>2025-10-10 22:34:17 +0200
commit0fb2b5712cc98ea993f37bd86eeed89fddc5d6d9 (patch)
treede9fce7ad0212b54c3de3a72dbe67038e8dd7936 /test
parent0cb0dd0d23386a6a6ff4e981bb633b9e34a87c65 (diff)
bugfixes
Diffstat (limited to 'test')
-rw-r--r--test/bf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bf.c b/test/bf.c
index 2ebdbb8..8eb7af3 100644
--- a/test/bf.c
+++ b/test/bf.c
@@ -4,7 +4,7 @@ void bf(const char *p)
{
extern int putchar(int);
extern int getchar(void);
- static unsigned char *const Mend = M + sizeof M;
+ unsigned char *Mend = M + sizeof M;
int b;
unsigned char *m = M;