mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
Whitespace cleanup: Fix broken indentation by hand
This patch fixes wrong indentation introduced by the last patch. This was mostly done with vim-s retab feature.
This commit is contained in:
parent
aab63a3499
commit
5e11ea06ef
12 changed files with 84 additions and 84 deletions
|
|
@ -431,15 +431,15 @@ int pa_sndfile_format_from_string(const char *name) {
|
|||
|
||||
pa_assert_se(sf_command(NULL, SFC_GET_FORMAT_MAJOR, &fi, sizeof(fi)) == 0);
|
||||
|
||||
/* First try to match via full type string */
|
||||
/* First try to match via full type string */
|
||||
if (strcasecmp(name, fi.name) == 0)
|
||||
return fi.format;
|
||||
|
||||
/* Then, try to match via the full extension */
|
||||
/* Then, try to match via the full extension */
|
||||
if (strcasecmp(name, fi.extension) == 0)
|
||||
return fi.format;
|
||||
|
||||
/* Then, try to match via the start of the type string */
|
||||
/* Then, try to match via the start of the type string */
|
||||
if (strncasecmp(name, fi.name, strlen(name)) == 0)
|
||||
return fi.format;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue