Skip to content

Commit

Permalink
Fix long conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
albfernandez committed Mar 7, 2023
1 parent b2250c1 commit 4a7ee74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/linuxense/javadbf/DBFReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
*/
public class DBFReader extends DBFBase implements Closeable {

private static final long MILLISECS_PER_DAY = 24*60*60*1000;
private static final long MILLISECS_PER_DAY = 24*60*60*1000L;
private static final long TIME_MILLIS_1_1_4713_BC = -210866803200000L;

protected InputStream inputStream;
Expand Down

0 comments on commit 4a7ee74

Please sign in to comment.