mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
coverity 83680 kill needless semicolons
Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
parent
2c8161c9eb
commit
74f93d190b
1 changed files with 2 additions and 2 deletions
|
@ -859,9 +859,9 @@ lws_rxflow_cache(struct libwebsocket *wsi, unsigned char *buf, int n, int len);
|
|||
#ifndef LWS_LATENCY
|
||||
static inline void lws_latency(struct libwebsocket_context *context,
|
||||
struct libwebsocket *wsi, const char *action,
|
||||
int ret, int completion) { while (0); }
|
||||
int ret, int completion) { do { } while (0); }
|
||||
static inline void lws_latency_pre(struct libwebsocket_context *context,
|
||||
struct libwebsocket *wsi) { while (0); }
|
||||
struct libwebsocket *wsi) { do { } while (0); }
|
||||
#else
|
||||
#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
|
||||
extern void
|
||||
|
|
Loading…
Add table
Reference in a new issue