diff options
| author | Simon Tatham <anakin@pobox.com> | 2023-04-24 09:31:18 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2023-04-24 10:04:20 +0100 |
| commit | 8c968483f8df7c30f78ff3998a397697a1699615 (patch) | |
| tree | e53c7f4d904a47fdd974e2cdfae30c8d13945c64 /emcc.c | |
| parent | 12b2608b241743314f177e73d8d73b72580d2948 (diff) | |
| download | puzzles-8c968483f8df7c30f78ff3998a397697a1699615.zip puzzles-8c968483f8df7c30f78ff3998a397697a1699615.tar.gz puzzles-8c968483f8df7c30f78ff3998a397697a1699615.tar.bz2 puzzles-8c968483f8df7c30f78ff3998a397697a1699615.tar.xz | |
emcc.c: missing (void) in a function definition.
This isn't C++, ahem.
Diffstat (limited to 'emcc.c')
| -rw-r--r-- | emcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -909,7 +909,7 @@ static bool savefile_read(void *vctx, void *buf, int len) return js_savefile_read(buf, len); } -void load_game() +void load_game(void) { const char *err; |