diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-02-18 08:57:22 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-02-18 08:57:22 -0500 |
commit | aab881fda26578edb5c17a705069e55e8c612f29 (patch) | |
tree | b78d8a2646f0b9edb08060c095b21baed29de5d3 /src/common/text.h | |
parent | 05385f247917cae2d15f648e1983e0d82b9ae923 (diff) |
Fix strict prototype warnings
Diffstat (limited to 'src/common/text.h')
-rw-r--r-- | src/common/text.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/text.h b/src/common/text.h index 28fc0c0d..485b7ce8 100644 --- a/src/common/text.h +++ b/src/common/text.h @@ -69,7 +69,7 @@ extern const gchar* arbitrary_encoding_fallback_string; void sound_play (const char *file, gboolean quiet); void sound_play_event (int i); void sound_beep (session *); -void sound_load (); -void sound_save (); +void sound_load (void); +void sound_save (void); #endif |