Skip to content

Commit

Permalink
Fix C/C++ Linux bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
extiop committed Nov 7, 2024
1 parent 1f69cca commit ce660ff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/C/tests/linux-gcc-g++/info.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int main()
MLAStatus status;

ArchiveInfo archive_info;
FILE *f = fopen("../../../../samples/archive_v1.mla", "r");
FILE *f = fopen("../../../../samples/archive_v2.mla", "r");
if (!f)
{
fprintf(stderr, " [!] Cannot open file: %d\n", errno);
Expand Down
2 changes: 1 addition & 1 deletion bindings/C/tests/linux-gcc-g++/open.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ int main()
return (int)status;
}

FILE *f = fopen("../../../../samples/archive_v1.mla", "r");
FILE *f = fopen("../../../../samples/archive_v2.mla", "r");
if (!f)
{
fprintf(stderr, " [!] Cannot open file: %d\n", errno);
Expand Down
Binary file added samples/archive_v2.mla
Binary file not shown.

0 comments on commit ce660ff

Please sign in to comment.