X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=flac_afh.c;h=d72eb83b315f6bd3e78460e83d66ec37c83e5fed;hp=9efc4e0ac24e152dfe7eca606fe7f8aa5f4e9c3d;hb=9aa1f3d69c0aa335b3026581defbc09eb2c4efb4;hpb=85094cd802bdb606d4e2bf7ed66dec51db2a0953 diff --git a/flac_afh.c b/flac_afh.c index 9efc4e0a..d72eb83b 100644 --- a/flac_afh.c +++ b/flac_afh.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Andre Noll + * Copyright (C) 2011 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -80,7 +80,7 @@ static FLAC__int64 meta_tell_cb(FLAC__IOHandle handle) static int meta_eof_cb(FLAC__IOHandle handle) { struct private_flac_afh_data *pfad = handle; - return pfad->fpos == pfad->map_bytes - 1; + return pfad->fpos == pfad->map_bytes; } static int meta_close_cb(FLAC__IOHandle __a_unused handle) @@ -215,7 +215,7 @@ static FLAC__StreamDecoderTellStatus tell_cb( return FLAC__STREAM_DECODER_TELL_STATUS_OK; } -/* libflac insits on this callback being present. */ +/* libflac insists on this callback being present. */ static FLAC__StreamDecoderWriteStatus write_cb( __a_unused const FLAC__StreamDecoder *decoder, __a_unused const FLAC__Frame *frame,