diff options
author | Tim Gates <tim.gates@iress.com> | 2020-11-28 09:26:07 +1100 |
---|---|---|
committer | Tim Gates <tim.gates@iress.com> | 2020-11-28 09:26:07 +1100 |
commit | 30f685447767daa9ccaff03cbf43fbee106058ac (patch) | |
tree | f5a0920f561f8c161a94e56ad624eca083af0d88 /src | |
parent | 0f856e8c8721537a0c945b7036351e4073dc0b04 (diff) | |
download | pianobar-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`.
Diffstat (limited to 'src')
-rw-r--r-- | src/libpiano/response.c | 2 |
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; |