From 1388b3219aa9855500d0eb8b2d5710419879fb80 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Feb 2016 16:48:23 +0100 Subject: [PATCH] decoder/thread: fix typo in comment --- src/decoder/DecoderThread.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/DecoderThread.cxx b/src/decoder/DecoderThread.cxx index 263482aff..a700d4df7 100644 --- a/src/decoder/DecoderThread.cxx +++ b/src/decoder/DecoderThread.cxx @@ -368,7 +368,7 @@ decoder_run_song(DecoderControl &dc, } if (decoder.error.IsDefined()) { - /* copy the Error from sruct Decoder to + /* copy the Error from struct Decoder to DecoderControl */ dc.state = DecoderState::ERROR; dc.error = std::move(decoder.error);