diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 01:52:03 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 01:52:03 +0200 |
commit | a873215f6e2240083cf392379692a2d503a4090c (patch) | |
tree | fb3d6cdc497f707208e39e071c59aa533792a2be | |
parent | Very good for now (diff) | |
download | go2work-a873215f6e2240083cf392379692a2d503a4090c.tar.gz go2work-a873215f6e2240083cf392379692a2d503a4090c.tar.bz2 go2work-a873215f6e2240083cf392379692a2d503a4090c.tar.xz go2work-a873215f6e2240083cf392379692a2d503a4090c.tar.zst go2work-a873215f6e2240083cf392379692a2d503a4090c.zip |
fixed missing space
-rw-r--r-- | src/u_prints.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/u_prints.go b/src/u_prints.go index bcc79d8..ce88c59 100644 --- a/src/u_prints.go +++ b/src/u_prints.go @@ -66,7 +66,7 @@ func print_time_left(curr_t [3]byte, dest_t [3]byte) { } left_t := seconds_to_time(left_secs) if left_secs < 60 { - fmt.Print("\r ") + fmt.Print("\r ") fmt.Print( "\r", left_t[SECS], "s", |