diff options
author | IBNobody <IBNobody@users.noreply.github.com> | 2016-04-22 00:01:38 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-22 01:01:38 -0400 |
commit | 082a0f313d8c842a5de7bae30ec8a3597e35880b (patch) | |
tree | 2e53e01fb96aef81a3727ec4ecfbccd6e11cb74b /quantum/audio/voices.h | |
parent | 7b3f212500210ae85063b043952b5b3ef6988ad6 (diff) | |
download | qmk_firmware-082a0f313d8c842a5de7bae30ec8a3597e35880b.tar.gz |
fixed compiler warnings (#273)
Diffstat (limited to 'quantum/audio/voices.h')
-rw-r--r-- | quantum/audio/voices.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/audio/voices.h b/quantum/audio/voices.h index 5aa99f4b1..2822fb6ac 100644 --- a/quantum/audio/voices.h +++ b/quantum/audio/voices.h @@ -20,7 +20,7 @@ typedef enum { } voice_type; void set_voice(voice_type v); -void voice_iterate(); -void voice_deiterate(); +void voice_iterate(void); +void voice_deiterate(void); #endif
\ No newline at end of file |