Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/opus_decoder.h')
-rw-r--r--src/opus_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_decoder.h b/src/opus_decoder.h
index 875bb3c2..8086b904 100644
--- a/src/opus_decoder.h
+++ b/src/opus_decoder.h
@@ -50,7 +50,7 @@ struct OpusDecoder {
inline short ADD_SAT16(a, b) {
int sum = a + b;
return sum > 32767 ? 32767 : sum < -32768 ? -32768 : (short)sum;
-}
+};
#endif /* OPUS_DECODER_H */