Function calls are being emitted with the right int for args

This commit is contained in:
Meyer Simon
2025-05-01 21:15:58 -04:00
parent 558c09e60f
commit 60ffb33c58
2 changed files with 6 additions and 2 deletions

View File

@ -52,7 +52,7 @@ bool S_IsEmpty(Stack *s){
}
int S_Size(Stack *s){
if (s == NULL || !S_IsEmpty(s)) {
if (s == NULL || S_IsEmpty(s)) {
return 0;
}
return s->size;