diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-25 22:48:05 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-25 22:48:05 -0400 |
| commit | 22ee67413580fd0f738b4c93c3cfc1d34f13cc35 (patch) | |
| tree | 7ecbb6092e9096294268284daa998f7ffe85be99 /src/edbox.c | |
| parent | 5ad74801b74a69b2cb8dbe0c1a0e0b9a5d251eb2 (diff) | |
| download | fujinet-chat-22ee67413580fd0f738b4c93c3cfc1d34f13cc35.tar.gz | |
Update TODO, fix type of old_edbox (char[], not char*[]).
Diffstat (limited to 'src/edbox.c')
| -rw-r--r-- | src/edbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edbox.c b/src/edbox.c index 9c042e7..4043bf2 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -9,7 +9,7 @@ extern void __fastcall__ bell(void); -char *old_edbox[EDBOX_SIZE]; +char old_edbox[EDBOX_SIZE]; static char old_len; static char typeover; |
