mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:15:43 +01:00
Fix a compile warning in aplay.c
Fix a compile warning regarding the 2GB constant value.
This commit is contained in:
parent
3a7f46c00f
commit
58bab1a4a7
1 changed files with 2 additions and 2 deletions
|
@ -127,9 +127,9 @@ struct fmt_capture {
|
|||
long long max_filesize;
|
||||
} fmt_rec_table[] = {
|
||||
{ NULL, end_raw, N_("raw data"), LLONG_MAX },
|
||||
{ begin_voc, end_voc, N_("VOC"), 16000000 },
|
||||
{ begin_voc, end_voc, N_("VOC"), 16000000LL },
|
||||
/* FIXME: can WAV handle exactly 2GB or less than it? */
|
||||
{ begin_wave, end_wave, N_("WAVE"), 2147483648 },
|
||||
{ begin_wave, end_wave, N_("WAVE"), 2147483648LL },
|
||||
{ begin_au, end_au, N_("Sparc Audio"), LLONG_MAX }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue