alsa: frame_size is size_t, not int

frame_size is a memory size and should be a size_t, not a signed integer.
This commit is contained in:
Max Kellermann 2009-01-25 13:07:06 +01:00
parent d887b6353f
commit fb3e43ed73

View File

@ -50,7 +50,7 @@ struct alsa_data {
alsa_writei_t *writei;
unsigned int buffer_time;
unsigned int period_time;
int frame_size;
size_t frame_size;
bool use_mmap;
struct mixer mixer;