Skip to content

Commit

Permalink
tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrej Rosano committed Jul 27, 2021
1 parent 9a99d86 commit a433b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/os_tamago_arm.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func walltime1() (sec int64, nsec int32) {
// performance
nano := nanotime()
sec = nano / 1000000000
nsec = int32(nano - (sec * 1000000000))
nsec = int32(nano % 1000000000)
return
}

Expand Down

0 comments on commit a433b1d

Please sign in to comment.