diff options
author | Chris Robinson <[email protected]> | 2018-11-13 23:26:42 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-13 23:26:42 -0800 |
commit | 6ae217d0052bcd1434e573fa16ea325996baf209 (patch) | |
tree | 909a26b61d6551279053a6cd59c235eacad68790 | |
parent | c3ee2061295dca521449bcea8aa14f092c83986c (diff) |
Fix some comment indentation
-rw-r--r-- | Alc/backends/alsa.cpp | 6 | ||||
-rw-r--r-- | Alc/backends/pulseaudio.cpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Alc/backends/alsa.cpp b/Alc/backends/alsa.cpp index 35942e6b..d40261cb 100644 --- a/Alc/backends/alsa.cpp +++ b/Alc/backends/alsa.cpp @@ -1333,9 +1333,9 @@ static void ALCalsaBackendFactory_probe(ALCalsaBackendFactory* UNUSED(self), enu { const char *name{entry.name.c_str()}; size_t namelen{entry.name.length()}; - /* +1 to also append the null char (to ensure a null-separated list - * and double-null terminated list). - */ + /* +1 to also append the null char (to ensure a null-separated list and + * double-null terminated list). + */ alstr_append_range(outnames, name, name + namelen+1); }; switch(type) diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp index 2a2de2a6..09b55229 100644 --- a/Alc/backends/pulseaudio.cpp +++ b/Alc/backends/pulseaudio.cpp @@ -1816,9 +1816,9 @@ static void PulseBackendFactory_probe(PulseBackendFactory* UNUSED(self), enum De { const char *name{entry.name.c_str()}; size_t namelen{entry.name.length()}; - /* +1 to also append the null char (to ensure a null-separated list - * and double-null terminated list). - */ + /* +1 to also append the null char (to ensure a null-separated list and + * double-null terminated list). + */ alstr_append_range(outnames, name, name + namelen+1); }; switch(type) |