diff options
author | Werner Lemberg <wl@gnu.org> | 2008-12-27 09:23:23 +0100 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2008-12-27 09:23:23 +0100 |
commit | 750a3ffcf9186636a0477358620bec74d12a7212 (patch) | |
tree | a968dcdcf7135941154019cbbf431eaa1f522ecd /flower/file-cookie.cc | |
parent | 5b3759c33c91766c98a939f3aa9ced6568e2bc69 (diff) |
More C++.
Diffstat (limited to 'flower/file-cookie.cc')
-rw-r--r-- | flower/file-cookie.cc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/flower/file-cookie.cc b/flower/file-cookie.cc index 49b5518f36..bedb100a00 100644 --- a/flower/file-cookie.cc +++ b/flower/file-cookie.cc @@ -15,12 +15,10 @@ extern "C" { } void * - lily_fopencookie (void *cookie, char const *modes, - lily_cookie_io_functions_t io_funcs) + lily_fopencookie (void *cookie, + char const * /* modes */, + lily_cookie_io_functions_t /* io_funcs */) { - (void) cookie; - (void) modes; - (void) io_funcs; assert (is_memory_stream (cookie)); return (FILE *) cookie; } |