Skip to content

Commit 960dd72

Browse files
authored
Merge pull request #27 from Arkoniak/fix_lastflush
fix int bug
2 parents 10f25d9 + 28a191e commit 960dd72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MiniLoggers"
22
uuid = "93f3dd0f-005d-4452-894a-a31841fa4078"
33
authors = ["Andrey Oskin"]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/minilogger.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct MiniLogger{AM <: AbstractMode, IOT1 <: IO, IOT2 <: IO, DFT <: DateFormat}
1414
dtformat::DFT
1515
mode::AM
1616
flush_threshold::Int
17-
lastflush::Base.RefValue{Int}
17+
lastflush::Base.RefValue{Int64}
1818
end
1919

2020
getio(io, append) = io

0 commit comments

Comments
 (0)