summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-05-10 17:26:53 +0200
committerTakashi Iwai <tiwai@suse.de>2006-05-10 17:26:53 +0200
commit58bab1a4a79481baa97f1de3042e5c9417136ffa (patch)
tree18b2bc361aadc3041cd13173ccff0e47089cc6a8
parent3a7f46c00f94bee3f236ca61c2906d7e9d1717c3 (diff)
downloadalsa-utils-58bab1a4a79481baa97f1de3042e5c9417136ffa.tar.gz
Fix a compile warning in aplay.c
Fix a compile warning regarding the 2GB constant value.
-rw-r--r--aplay/aplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aplay/aplay.c b/aplay/aplay.c
index 6b35021..e8beef0 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -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 }
};