Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksiy-Yakovenko committed Jul 17, 2024
1 parent f0a4c9f commit 4346dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/MP3DecoderTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ static void runMp3TwoPieceTestWithBackend(int backend) {
EXPECT_EQ(cmp1, 0);

int cmp2 = memcmp (buffer+size/2, buffer2+size/2, size/2);
fprintf(stderr, "cmp2: %d\n", cmp1);
fprintf(stderr, "cmp2: %d\n", cmp2);
EXPECT_EQ(cmp2, 0);

int cmp = memcmp (buffer, buffer2, size);
fprintf(stderr, "cmp: %d\n", cmp1);
fprintf(stderr, "cmp: %d\n", cmp);

free (buffer);
free (buffer2);
Expand Down

0 comments on commit 4346dcd

Please sign in to comment.