Fixed bug in FreeBSD implementation: return seconds instead of minutes.
This commit is contained in:
parent
1f2aea66ad
commit
c031452f60
|
@ -99,8 +99,8 @@
|
|||
(lambda (time)
|
||||
(let ((match-data (regexp-search short-rx time)))
|
||||
(if match-data
|
||||
(+ (* 60 (string->number (match:substring match-data 1)))
|
||||
(string->number (match:substring match-data 2))
|
||||
(+ (* 60 60 (string->number (match:substring match-data 1)))
|
||||
(* 60 (string->number (match:substring match-data 2)))
|
||||
(quotient (string->number (match:substring match-data 3)) 50))
|
||||
0)))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue