diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-10-01 14:04:47 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-10-01 16:35:00 +0100 |
| commit | 3276376d1be74b66970b88c3e941dcedf8d22474 (patch) | |
| tree | 573461b9f6efc036d5017700d30c9336fee6d6dd /nestedvm.c | |
| parent | b3243d75043cf1d70beb88d2a36eaebfe85c2c3f (diff) | |
| download | puzzles-3276376d1be74b66970b88c3e941dcedf8d22474.zip puzzles-3276376d1be74b66970b88c3e941dcedf8d22474.tar.gz puzzles-3276376d1be74b66970b88c3e941dcedf8d22474.tar.bz2 puzzles-3276376d1be74b66970b88c3e941dcedf8d22474.tar.xz | |
Assorted char * -> const char * API changes.
I went through all the char * parameters and return values I could see
in puzzles.h by eye and spotted ones that surely ought to have been
const all along.
Diffstat (limited to 'nestedvm.c')
| -rw-r--r-- | nestedvm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -17,7 +17,7 @@ extern void _pause(); extern int _call_java(int cmd, int arg1, int arg2, int arg3); -void fatal(char *fmt, ...) +void fatal(const char *fmt, ...) { va_list ap; fprintf(stderr, "fatal error: "); @@ -53,7 +53,7 @@ void frontend_default_colour(frontend *fe, float *output) output[0] = output[1]= output[2] = 0.8f; } -void nestedvm_status_bar(void *handle, char *text) +void nestedvm_status_bar(void *handle, const char *text) { _call_java(4,0,(int)text,0); } @@ -79,7 +79,7 @@ void nestedvm_unclip(void *handle) } void nestedvm_draw_text(void *handle, int x, int y, int fonttype, int fontsize, - int align, int colour, char *text) + int align, int colour, const char *text) { frontend *fe = (frontend *)handle; _call_java(5, x + fe->ox, y + fe->oy, |