diff options
author | Patrice Buriez <patrice.buriez@intel.com> | 2018-03-23 18:20:00 +0100 |
---|---|---|
committer | Patrice Buriez <patrice.buriez@intel.com> | 2018-03-23 18:20:00 +0100 |
commit | 37d81265d5e06c2ad87446511681259222c94984 (patch) | |
tree | 83b9f3802424f65b26787167f46a4215831c7e0f | |
parent | a3fc5b620eec70c9e2c043a66d0b358c29d51106 (diff) |
Trivial: fix trailing white-spaces
Makefile checks for some coding style rules.
Previous commit introduced trailing white-spaces, which broke
compilation.
Change-Id: Ia57fc9b1428b4a9f8537dce4875e62ac55265fe3
Signed-off-by: Patrice Buriez <patrice.buriez@intel.com>
-rw-r--r-- | VNFs/DPPD-PROX/handle_lat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VNFs/DPPD-PROX/handle_lat.c b/VNFs/DPPD-PROX/handle_lat.c index 0ebe1e13..1fa44137 100644 --- a/VNFs/DPPD-PROX/handle_lat.c +++ b/VNFs/DPPD-PROX/handle_lat.c @@ -118,8 +118,8 @@ struct task_lat { /* This function calculate the difference between rx and tx_time * Both values are uint32_t (see handle_lat_bulk) * rx time should be higher than tx_time...except every UINT32_MAX - * cycles, when rx_time overflows. - * As the return value is also uint32_t, returning (rx_time - tx_time) + * cycles, when rx_time overflows. + * As the return value is also uint32_t, returning (rx_time - tx_time) * is also fine when it overflows. */ static uint32_t diff_time(uint32_t rx_time, uint32_t tx_time) |