]> git.alsa-project.org Git - alsa-utils.git/commitdiff
Fix a compile warning in aplay.c
authorTakashi Iwai <tiwai@suse.de>
Wed, 10 May 2006 15:26:53 +0000 (17:26 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 10 May 2006 15:26:53 +0000 (17:26 +0200)
Fix a compile warning regarding the 2GB constant value.

aplay/aplay.c

index 6b3502161e02afd6ef8d80a39f7184e0ae987bef..e8beef0f9165fcdacecc09d459e0dbba6632624f 100644 (file)
@@ -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 }
 };