Skip to content

Commit bec24a2

Browse files
committed
Fix: 'this-hMap' to 'this->hMap'
1 parent 45de91e commit bec24a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bbfcodec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ BBFReader::BBFReader(const char* iFile)
773773
#ifdef _WIN32
774774
this->hFile = CreateFileA(iFile, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
775775

776-
if (this-hFile == INVALID_HANDLE_VALUE)
776+
if (this->hFile == INVALID_HANDLE_VALUE)
777777
{
778778
fprintf(stderr, "[BBFMUX] Unable to open file %s\n", iFile);
779779
return;

0 commit comments

Comments
 (0)