summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-11-28 09:26:07 +1100
committerTim Gates <tim.gates@iress.com>2020-11-28 09:26:07 +1100
commit30f685447767daa9ccaff03cbf43fbee106058ac (patch)
treef5a0920f561f8c161a94e56ad624eca083af0d88
parent0f856e8c8721537a0c945b7036351e4073dc0b04 (diff)
downloadpianobar-30f685447767daa9ccaff03cbf43fbee106058ac.tar.gz
pianobar-30f685447767daa9ccaff03cbf43fbee106058ac.tar.bz2
pianobar-30f685447767daa9ccaff03cbf43fbee106058ac.zip
docs: fix simple typo, exhaused -> exhausted
There is a small typo in src/libpiano/response.c. Should read `exhausted` rather than `exhaused`.
-rw-r--r--src/libpiano/response.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libpiano/response.c b/src/libpiano/response.c
index 1a0f2d5..1e79261 100644
--- a/src/libpiano/response.c
+++ b/src/libpiano/response.c
@@ -77,7 +77,7 @@ static void PianoStrpcat (char * restrict dest, const char * restrict src,
--len;
}
- /* append until source exhaused or destination full */
+ /* append until source exhausted or destination full */
while (*src != '\0' && len > 1) {
*dest = *src;
++dest;