*: change C-style prototypes, drop "(void)"
This commit is contained in:
@@ -31,6 +31,7 @@ input_stream_global_init(Error &error);
|
||||
/**
|
||||
* Deinitializes this library and all #InputStream implementations.
|
||||
*/
|
||||
void input_stream_global_finish(void);
|
||||
void
|
||||
input_stream_global_finish();
|
||||
|
||||
#endif
|
||||
|
@@ -75,7 +75,7 @@ struct InputPlugin {
|
||||
* Global deinitialization. Called once before MPD shuts
|
||||
* down (only if init() has returned true).
|
||||
*/
|
||||
void (*finish)(void);
|
||||
void (*finish)();
|
||||
|
||||
InputStream *(*open)(const char *uri,
|
||||
Mutex &mutex, Cond &cond,
|
||||
|
Reference in New Issue
Block a user