1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-23 04:04:54 +08:00

use pass by reference in operator* for timespec

This commit is contained in:
William Woodall 2013-10-15 11:48:00 -07:00
parent 17e698ce94
commit 80a087e606

View File

@ -126,7 +126,7 @@ operator- (const struct timespec &a, const struct timespec &b)
* that the result is muliple seconds. Only makes sense when the timespec * that the result is muliple seconds. Only makes sense when the timespec
* argument is a duration. */ * argument is a duration. */
static inline timespec static inline timespec
operator* (const struct timespec &ts, const size_t mul) operator* (const struct timespec &ts, const size_t &mul)
{ {
struct timespec result = { struct timespec result = {
ts.tv_sec * mul, ts.tv_sec * mul,