Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12:Update
alsa-utils.948
0003-aplay-fix-two-off-by-one-errors.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0003-aplay-fix-two-off-by-one-errors.patch of Package alsa-utils.948
From 719faff80962a5d93c09980673f08048ae58add6 Mon Sep 17 00:00:00 2001 From: Jurgen Kramer <gtmkramer@xs4all.nl> Date: Mon, 9 Sep 2013 12:02:29 +0200 Subject: [PATCH] aplay: fix two off by one errors Attached patch for aplay fixes two off-by-one errors preventing usage of the last available sample format. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- aplay/aplay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aplay/aplay.c b/aplay/aplay.c index 89c6b06..e0631c4 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -242,7 +242,7 @@ _("Usage: %s [OPTION]... [FILE]...\n" ) , command); printf(_("Recognized sample formats are:")); - for (k = 0; k < SND_PCM_FORMAT_LAST; ++k) { + for (k = 0; k <= SND_PCM_FORMAT_LAST; ++k) { const char *s = snd_pcm_format_name(k); if (s) printf(" %s", s); @@ -1114,7 +1114,7 @@ static void show_available_sample_formats(snd_pcm_hw_params_t* params) snd_pcm_format_t format; fprintf(stderr, "Available formats:\n"); - for (format = 0; format < SND_PCM_FORMAT_LAST; format++) { + for (format = 0; format <= SND_PCM_FORMAT_LAST; format++) { if (snd_pcm_hw_params_test_format(handle, params, format) == 0) fprintf(stderr, "- %s\n", snd_pcm_format_name(format)); } -- 1.8.4
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor