Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Dec 4, 2023
1 parent 9f92025 commit f13a4d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cfg/posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ typedef struct {
int* data;
} S_memalign;

S* posix_memalign_memleak(size_t n) {
S_memalign* posix_memalign_memleak(size_t n) {
S_memalign* s = malloc(sizeof(*s));
s->N = n;
if (0 != posix_memalign((void**)&s->data, 16, n * sizeof(int))) {
Expand Down

0 comments on commit f13a4d5

Please sign in to comment.