From: Andre Noll Date: Mon, 22 Oct 2007 21:53:01 +0000 (+0200) Subject: Change chunktable array type from size_t to uint32_t. X-Git-Tag: v0.3.0~270 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=94cc219f19a98a5a046cf9f7fb3bfe4d7ef79eb1 Change chunktable array type from size_t to uint32_t. It's better to have a fixed size here. --- diff --git a/afh.h b/afh.h index b4de774a..7c6912c3 100644 --- a/afh.h +++ b/afh.h @@ -41,7 +41,7 @@ struct audio_format_info { * The table that specifies the offset of the individual pieces in * the current audio file. */ - size_t *chunk_table; + uint32_t *chunk_table; /** Period of time between sending data chunks. */ struct timeval chunk_tv; /** End of file timeout - Do not load new audio file until this time. */