[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 0c2b39c2e08d5b5490587
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-07-03 13:38:52
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via 0c2b39c2e08d5b549058715785d5a837d83de15e (commit) from b181c1720cdea86b66b1dc98f08581405b9eecb9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0c2b39c2e08d5b549058715785d5a837d83de15e Author: Michael Black W9MDB <mdb...@ya...> Date: Fri Jul 3 08:38:33 2020 -0500 small change to debug statement diff --git a/src/misc.c b/src/misc.c index ca9b48bd..a4efb69e 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1300,7 +1300,7 @@ double HAMLIB_API elapsed_ms(struct timespec *start, int option) elapsed_msec = ((stop.tv_sec - start->tv_sec) + (stop.tv_nsec / 1e9 - start->tv_nsec / 1e9)) * 1e3; - rig_debug(RIG_DEBUG_TRACE, "%s: elapsed_msecs=%g\n", __func__, elapsed_msec); + rig_debug(RIG_DEBUG_TRACE, "%s: elapsed_msecs=%.0f\n", __func__, elapsed_msec); if (elapsed_msec < 0 || option == HAMLIB_ELAPSED_INVALIDATE) { return 1000000; } ----------------------------------------------------------------------- Summary of changes: src/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |