build: apply gofmt from go1.13 to change case of number literals
This commit is contained in:
parent
7b0966880e
commit
ffa1dac10b
16 changed files with 37 additions and 37 deletions
|
@ -1115,7 +1115,7 @@ func (o *Object) parseTimeString(timeString string) (err error) {
|
|||
fs.Debugf(o, "Failed to parse mod time string %q: %v", timeString, err)
|
||||
return err
|
||||
}
|
||||
o.modTime = time.Unix(unixMilliseconds/1E3, (unixMilliseconds%1E3)*1E6).UTC()
|
||||
o.modTime = time.Unix(unixMilliseconds/1e3, (unixMilliseconds%1e3)*1e6).UTC()
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue