Skip to content

Commit

Permalink
fix S.fs type stability
Browse files Browse the repository at this point in the history
  • Loading branch information
jpjones76 committed Aug 13, 2018
1 parent 2df39b4 commit 783c366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Formats/LennartzAsc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function rlennasc(f::String)
ts = 0

sta = replace(h[3], "\'" => "")
S.fs = 1000/Meta.parse(h[5])
S.fs = 1000.0 / Base.parse(Float64, h[5])
ts = round(Int64, Dates.datetime2unix(DateTime(join([h[8],"T",h[9]])))/μs)

cmp = split(fname,'.')[end]
Expand Down

0 comments on commit 783c366

Please sign in to comment.