oci: cast timestamp to int64
Found while trying to package ocid for openSUSE. Signed-off-by: Aleksa Sarai <asarai@suse.de>
This commit is contained in:
parent
5290ca593a
commit
8ace3647fa
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ func (r *Runtime) UpdateStatus(c *Container) error {
|
|||
return fmt.Errorf("failed to find container exit file: %v", err)
|
||||
}
|
||||
st := fi.Sys().(*syscall.Stat_t)
|
||||
c.state.Finished = time.Unix(st.Ctim.Sec, st.Ctim.Nsec)
|
||||
c.state.Finished = time.Unix(int64(st.Ctim.Sec), int64(st.Ctim.Nsec))
|
||||
|
||||
statusCodeStr, err := ioutil.ReadFile(exitFilePath)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue