Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Post-release fix :(
Browse files Browse the repository at this point in the history
  • Loading branch information
rene0 committed Apr 17, 2020
1 parent ab775c9 commit 55e3ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decode_time.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ calculate_date_time(unsigned init_min, unsigned errflags, int increase,
}
}
}
return (errflags << 3) || ((!p3) << 2) || ((!p2) << 1) || (!p1);
return (errflags << 3) | ((!p3) << 2) | ((!p2) << 1) | (!p1);
}

static void
Expand Down

0 comments on commit 55e3ba1

Please sign in to comment.