summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>2003-12-10 20:52:30 +0000
committerhpa <hpa>2003-12-10 20:52:30 +0000
commit0bf449373c14aad828b7ed58b296642d663bad12 (patch)
treec14ac5851d6ca0a21480989f5f338ed27aad0b58
parent36166b159309632a2f5485f5312952e2c97bcc63 (diff)
downloadsyslinux-0bf449373c14aad828b7ed58b296642d663bad12.tar.gz
Add "const" to things which are not to be changed...
-rw-r--r--com32/include/com32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/include/com32.h b/com32/include/com32.h
index e61cb3c2..cc4bc825 100644
--- a/com32/include/com32.h
+++ b/com32/include/com32.h
@@ -49,10 +49,10 @@ typedef struct {
extern struct com32_sys_args {
uint32_t cs_sysargs;
char *cs_cmdline;
- void (*cs_intcall)(uint8_t, com32sys_t *, com32sys_t *);
+ void (*cs_intcall)(uint8_t, const com32sys_t *, com32sys_t *);
void *cs_bounce;
uint32_t cs_bounce_size;
- void (*cs_farcall)(uint32_t, com32sys_t *, com32sys_t *);
+ void (*cs_farcall)(uint32_t, const com32sys_t *, com32sys_t *);
} __com32;
/*