From: Patrice Buriez Date: Fri, 23 Mar 2018 17:20:00 +0000 (+0100) Subject: Trivial: fix trailing white-spaces X-Git-Tag: opnfv-6.0.0~15 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=37d81265d5e06c2ad87446511681259222c94984;p=samplevnf.git 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 --- 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)