1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

glib: accidentally fixed unsupported signal watcher for glib

We worked fine while an earlier typo meant this was never getting past the
preprocessor... when it did, it exposes that the signal handler type was
never implemented.  Just remove for glib.
This commit is contained in:
Andy Green 2020-03-10 12:34:34 +00:00
parent 5b9fe01863
commit 84b9b2c69c

View file

@ -228,9 +228,6 @@ struct lws_signal_watcher {
#endif
#ifdef LWS_WITH_LIBEVENT
struct lws_signal_watcher_libevent event;
#endif
#ifdef LWS_WITH_GLIB
struct lws_signal_watcher_glib glib;
#endif
struct lws_context *context;
};