diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-10-01 14:45:12 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-10-01 16:35:40 +0100 |
| commit | a58c1b216bb1d4547f7b2ef2703fe2d0cd3b5cac (patch) | |
| tree | b9bcdc589ffe1f72e2510237b6e1524f5b96085c /devel.but | |
| parent | 3276376d1be74b66970b88c3e941dcedf8d22474 (diff) | |
| download | puzzles-a58c1b216bb1d4547f7b2ef2703fe2d0cd3b5cac.zip puzzles-a58c1b216bb1d4547f7b2ef2703fe2d0cd3b5cac.tar.gz puzzles-a58c1b216bb1d4547f7b2ef2703fe2d0cd3b5cac.tar.bz2 puzzles-a58c1b216bb1d4547f7b2ef2703fe2d0cd3b5cac.tar.xz | |
Make the code base clean under -Wwrite-strings.
I've also added that warning option and -Werror to the build script,
so that I'll find out if I break this property in future.
Diffstat (limited to 'devel.but')
| -rw-r--r-- | devel.but | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3296,8 +3296,7 @@ visually activate and deactivate a redo button. \H{midend-serialise} \cw{midend_serialise()} \c void midend_serialise(midend *me, -\c void (*write)(void *ctx, void *buf, int len), -\c void *wctx); +\c void (*write)(void *ctx, const void *buf, int len), void *wctx); Calling this function causes the mid-end to convert its entire internal state into a long ASCII text string, and to pass that |