ref: 836104b143ed839abe871a74df3df9ff64eb4c7c
parent: 1bd200bc42dfee0751ecc1b38a2714de619261a1
author: Timothy B. Terriberry <tterribe@xiph.org>
date: Mon Dec 10 06:08:20 EST 2018
Fix a couple of typos in comments.
--- a/src/stream.c
+++ b/src/stream.c
@@ -63,7 +63,7 @@
static int op_fseek(void *_stream,opus_int64 _offset,int _whence){
#if defined(_WIN32)
- /*_fseeki64() is not exposed until MSCVCRT80.
+ /*_fseeki64() is not exposed until MSVCRT80.
This is the default starting with MSVC 2005 (_MSC_VER>=1400), but we want
to allow linking against older MSVCRT versions for compatibility back to
XP without installing extra runtime libraries.
@@ -105,7 +105,7 @@
static opus_int64 op_ftell(void *_stream){
#if defined(_WIN32)
- /*_ftelli64() is not exposed until MSCVCRT80, and ftello()/ftello64() have
+ /*_ftelli64() is not exposed until MSVCRT80, and ftello()/ftello64() have
the same problems as fseeko()/fseeko64() in MingW.
See above for a more detailed explanation.*/
opus_int64 pos;