]> code.delx.au - pulseaudio/blobdiff - src/pulsecore/sndfile-util.c
Whitespace cleanup: Remove tabs
[pulseaudio] / src / pulsecore / sndfile-util.c
index d8cc24453f88f9426d1075a33cc91677b01b0654..61b48844b99f5c82efefd2f239af1021e7463558 100644 (file)
@@ -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;
     }