diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-06-26 22:21:04 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-06-26 22:21:04 +0300 |
commit | 28bb6070e64f25aa6ff64f81b59a7f52e12d4092 (patch) | |
tree | c5ceaef26d2ce4c48d926e86257e7d186f680448 /tests/dynarray.c | |
parent | f34d8be861231709fc9e115ede326de80c176395 (diff) |
Finished and kind of tested linked list
HASH MAP IS "finished" BUT UNTESTED AT ALL, I WILL TEST AND WORK ON IT
TOMORROW
Diffstat (limited to 'tests/dynarray.c')
-rw-r--r-- | tests/dynarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dynarray.c b/tests/dynarray.c index 2d9ea61..3312234 100644 --- a/tests/dynarray.c +++ b/tests/dynarray.c @@ -29,7 +29,7 @@ void print_arr(TEST_TYPE *a, int line, const char* message) #elif defined(TT_LONG) printf("%li, ", a[i]); #else -#pragma message error "PROVIDE A VALID SIGNED INTEGRAL TYPE" +#pragma error "PROVIDE A VALID SIGNED INTEGRAL TYPE" #endif } printf("} size: %ld, cap: %ld, element_size: %ld\n", |