Skip to content

Commit

Permalink
The redundant brackets have been removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ax-6 committed Aug 8, 2024
1 parent 3b79a02 commit df8534d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aqvm/base/time/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ int AqvmBaseTime_SetWeekday(struct AqvmBaseTime_Time* time_info) {
int m = time_info->month;
int d = time_info->day;

if ((time_info->year == 1582 && time_info->month == 10 &&
time_info->day > 4 && time_info->day < 15)) {
if (time_info->year == 1582 && time_info->month == 10 && time_info->day > 4 &&
time_info->day < 15) {
// TODO
return -2;
}
Expand Down

0 comments on commit df8534d

Please sign in to comment.