Skip to content

Commit

Permalink
use the proper name for the EbmlHead semantic context
Browse files Browse the repository at this point in the history
It was using a defined name rather than the real name.
  • Loading branch information
robUx4 committed Dec 28, 2023
1 parent cecacfc commit 683f232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/ebml/test00.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ int main(void)
}
printf("\n");

ElementLevel0->SkipData(aStream, EbmlHead_Context);
ElementLevel0->SkipData(aStream, Context_EbmlHead);
if (ElementLevel0 != NULL)
delete ElementLevel0;
}
Expand Down
2 changes: 1 addition & 1 deletion test/mux/test8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ int main(int argc, char **argv)
}
printf("\n");

ElementLevel0->SkipData(aStream, EbmlHead_Context);
ElementLevel0->SkipData(aStream, Context_EbmlHead);
if (ElementLevel0 != NULL)
delete ElementLevel0;
}
Expand Down

0 comments on commit 683f232

Please sign in to comment.