diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2020-04-06 16:27:44 +0200 |
---|---|---|
committer | Christian Göttsche <cgzones@googlemail.com> | 2020-04-11 14:16:30 +0200 |
commit | 7eb5d24c907489ba1a20baf64e2afdfada978d93 (patch) | |
tree | 10d87b4709ea0b5696a8fb751031e29210337de8 /contrib | |
parent | 26e2a97b1cbb099fae5a7b613ea1edbb342a4061 (diff) | |
download | rspamd-7eb5d24c907489ba1a20baf64e2afdfada978d93.tar.gz rspamd-7eb5d24c907489ba1a20baf64e2afdfada978d93.zip |
[Minor] Avoid nested opening comment sequences
../contrib/libev/ev.c: At top level:
../contrib/libev/ev.c:5660:27: warning: "/*" within comment [-Wcomment]
5660 | /* EV_STAT 0x00001000 /* stat data changed */
|
../contrib/libev/ev.c:5661:27: warning: "/*" within comment [-Wcomment]
5661 | /* EV_EMBED 0x00010000 /* embedded event loop needs sweep */
|
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libev/ev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libev/ev.c b/contrib/libev/ev.c index 533b19e3d..3aab45006 100644 --- a/contrib/libev/ev.c +++ b/contrib/libev/ev.c @@ -5652,8 +5652,8 @@ ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w)) EV_NOEXCEPT wl = wn; } #endif -/* EV_STAT 0x00001000 /* stat data changed */ -/* EV_EMBED 0x00010000 /* embedded event loop needs sweep */ +// EV_STAT 0x00001000 /* stat data changed */ +// EV_EMBED 0x00010000 /* embedded event loop needs sweep */ } #endif void |