mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 19:26:36 +02:00
image header magic field shouldn't be const (removes warning)
This commit is contained in:
parent
05d416e17f
commit
8518ebe641
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -65,7 +65,7 @@ void sexp_usage(int err) {
|
|||
|
||||
typedef struct sexp_image_header_t* sexp_image_header;
|
||||
struct sexp_image_header_t {
|
||||
const char magic[8];
|
||||
char magic[8];
|
||||
short major, minor;
|
||||
sexp_abi_identifier_t abi;
|
||||
sexp_uint_t size;
|
||||
|
|
Loading…
Add table
Reference in a new issue