From 223b409c9cf02b52884218dc7f2b9697cf279388 Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Mon, 17 Sep 2018 10:03:55 -0700 Subject: [PATCH] Fix typo: substract -> subtract --- src/pulse/simple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulse/simple.c b/src/pulse/simple.c index 7b66f62d7..38881de64 100644 --- a/src/pulse/simple.c +++ b/src/pulse/simple.c @@ -474,7 +474,7 @@ pa_usec_t pa_simple_get_latency(pa_simple *p, int *rerror) { * been consumed, which means that pa_stream_get_latency() will * return too large values, because the whole size of the * partially read chunk is included in the latency. Therefore, - * we need to substract the already-read amount from the + * we need to subtract the already-read amount from the * latency. */ already_read = pa_bytes_to_usec(p->read_index, pa_stream_get_sample_spec(p->stream));