Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix syntax of calloc calls in pinelog.c
`calloc` requires the count to be the first argument, and the size parameter to be the second argument. However, this has not really caused issues in the past, and older compilers were not so strict about it. However, newer compilers (at least GCC 14) triggers a warning on this and causes the build to fail. Fixes #52
- Loading branch information