Skip to content

Commit

Permalink
Fix another VS warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vtereshkov committed Aug 28, 2023
1 parent 645adfe commit 429b43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/umka_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ UMKA_API int umkaGetStrLen(const char *str)
UMKA_API void umkaMakeDynArray(void *umka, void *array, void *type, int len)
{
Compiler *comp = umka;
return vmMakeDynArray(&comp->vm, (DynArray *)array, (Type *)type, len);
vmMakeDynArray(&comp->vm, (DynArray *)array, (Type *)type, len);
}


Expand Down

0 comments on commit 429b43a

Please sign in to comment.