Skip to content

Commit

Permalink
[test] fix function prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
evanmiller committed May 4, 2024
1 parent 32f64d3 commit 7913717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/test_dta_days.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ static inline int is_leap(int year) {
return ((year % 4 == 0 && year % 100 != 0) || year % 400 ==0);
}

void test_dta_dates() {
void test_dta_dates(void) {
int daysPerMonth[] = {31,28,31,30,31,30,31,31,30,31,30,31};
int daysPerMonthLeap[] = {31,29,31,30,31,30,31,31,30,31,30,31};
char buf[1024];
Expand Down

0 comments on commit 7913717

Please sign in to comment.