diff options
| author | Yang Li <yang.lee@linux.alibaba.com> | 2021-02-08 17:33:38 +0800 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2021-02-08 14:56:20 -0800 |
| commit | c85b3bb7b650c52365f12eb51c8b42e31828c647 (patch) | |
| tree | d88877c214337ed31f0a4e223d68aafb450b2183 | |
| parent | 300a0fd8afb12268a168d2d0f0841391d5f86625 (diff) | |
selftests/net: so_txtime: remove unneeded semicolon
Eliminate the following coccicheck warning:
./tools/testing/selftests/net/so_txtime.c:199:3-4: Unneeded semicolon
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | tools/testing/selftests/net/so_txtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/so_txtime.c b/tools/testing/selftests/net/so_txtime.c index 3155fbbf644b..b4cca382d125 100644 --- a/tools/testing/selftests/net/so_txtime.c +++ b/tools/testing/selftests/net/so_txtime.c @@ -196,7 +196,7 @@ static void do_recv_errqueue_timeout(int fdt) default: error(1, 0, "errqueue: errno %u code %u\n", err->ee_errno, err->ee_code); - }; + } tstamp = ((int64_t) err->ee_data) << 32 | err->ee_info; tstamp -= (int64_t) glob_tstart; |
