Name that a bit better
This commit is contained in:
parent
b24b0f33d2
commit
d782658bc0
1 changed files with 2 additions and 2 deletions
4
main.c
4
main.c
|
@ -43,7 +43,7 @@
|
||||||
#define ZX_CHAR_TOKEN(c) \
|
#define ZX_CHAR_TOKEN(c) \
|
||||||
(ZX_CHAR_TOKEN_LOW(c) || ZX_CHAR_TOKEN_HIGH(c))
|
(ZX_CHAR_TOKEN_LOW(c) || ZX_CHAR_TOKEN_HIGH(c))
|
||||||
|
|
||||||
#define ZX_BASIC_STATE_LEN 116
|
#define ZX_BASIC_STATE_SIZE 116
|
||||||
|
|
||||||
#define ZX_CHAR_TOKEN_INTEGRAL(c) \
|
#define ZX_CHAR_TOKEN_INTEGRAL(c) \
|
||||||
(c == 0x0e)
|
(c == 0x0e)
|
||||||
|
@ -264,7 +264,7 @@ static ssize_t zx_dump_basic(int fd) {
|
||||||
goto error_malloc;
|
goto error_malloc;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lseek(fd, ZX_BASIC_STATE_LEN, SEEK_CUR) < 0) {
|
if (lseek(fd, ZX_BASIC_STATE_SIZE, SEEK_CUR) < 0) {
|
||||||
goto error_io;
|
goto error_io;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue