summaryrefslogtreecommitdiff
path: root/src/libFLAC/bitreader.c
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-01-31 03:53:22 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-01-31 03:53:22 +0000
commite3ec2ad59ef4991f8f90422b39c2509535bcc56b (patch)
tree320eedab9589c76bd1cdd4d6ae7a9de936be3ffd /src/libFLAC/bitreader.c
parent44eead85340cd6d83adbd405603e3aad83924979 (diff)
downloadflac-e3ec2ad59ef4991f8f90422b39c2509535bcc56b.tar.gz
convert C prototypes for functions with no args from () to (void)
Diffstat (limited to 'src/libFLAC/bitreader.c')
-rw-r--r--src/libFLAC/bitreader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libFLAC/bitreader.c b/src/libFLAC/bitreader.c
index b7e3a327..6c2982e5 100644
--- a/src/libFLAC/bitreader.c
+++ b/src/libFLAC/bitreader.c
@@ -257,7 +257,7 @@ static FLAC__bool bitreader_read_from_client_(FLAC__BitReader *br)
*
***********************************************************************/
-FLAC__BitReader *FLAC__bitreader_new()
+FLAC__BitReader *FLAC__bitreader_new(void)
{
FLAC__BitReader *br = (FLAC__BitReader*)calloc(1, sizeof(FLAC__BitReader));