fix prototype (foo() is not a prototype, use foo(void) instead).

2008-09-10  Michael Natterer  <mitch@gimp.org>

	* plug-ins/script-fu/tinyscheme/scheme.h: fix prototype (foo() is
	not a prototype, use foo(void) instead).


svn path=/trunk/; revision=26919
This commit is contained in:
Michael Natterer 2008-09-10 20:07:17 +00:00 committed by Michael Natterer
parent 2a01f97b6e
commit 3977873bc0
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-09-10 Michael Natterer <mitch@gimp.org>
* plug-ins/script-fu/tinyscheme/scheme.h: fix prototype (foo() is
not a prototype, use foo(void) instead).
2008-09-10 Tor Lillqvist <tml@novell.com>
* app/gui/gui-unique.c: Untabify.

View file

@ -130,7 +130,7 @@ SCHEME_EXPORT void ts_output_string (TsOutputType type,
int len);
#endif
SCHEME_EXPORT scheme *scheme_init_new();
SCHEME_EXPORT scheme *scheme_init_new(void);
SCHEME_EXPORT scheme *scheme_init_new_custom_alloc(func_alloc malloc, func_dealloc free);
SCHEME_EXPORT int scheme_init(scheme *sc);
SCHEME_EXPORT int scheme_init_custom_alloc(scheme *sc, func_alloc, func_dealloc);