commit 7eb5d24: [Minor] Avoid nested opening comment sequences

Christian Göttsche cgzones at googlemail.com
Tue Apr 14 09:56:15 UTC 2020


Author: Christian Göttsche
Date: 2020-04-06 16:27:44 +0200
URL: https://github.com/rspamd/rspamd/commit/7eb5d24c907489ba1a20baf64e2afdfada978d93

[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 */
      |

---
 contrib/libev/ev.c | 4 ++--
 1 file 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


More information about the Commits mailing list