Gitweb links:
...log
http://git.netsurf-browser.org/libnsfb.git/shortlog/998cce5becdb0edc9c9cab6648b848e5a851d292
...commit
http://git.netsurf-browser.org/libnsfb.git/commit/998cce5becdb0edc9c9cab6648b848e5a851d292
...tree
http://git.netsurf-browser.org/libnsfb.git/tree/998cce5becdb0edc9c9cab6648b848e5a851d292
The branch, master has been updated
via 998cce5becdb0edc9c9cab6648b848e5a851d292 (commit)
from 00693569dd0b86800030339af84454f1be5b419d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libnsfb.git/commit/?id=998cce5becdb0edc9c9cab6648b848e5a851d292
commit 998cce5becdb0edc9c9cab6648b848e5a851d292
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
Wayland surface: Squash missing field initializer warning.
src/surface/wld.c:1085:1: warning: missing initializer for field ‘frame’ of
‘const struct wl_pointer_listener’ [-Wmissing-field-initializers]
diff --git a/src/surface/wld.c b/src/surface/wld.c
index 9ef3c40..cc543da 100644
--- a/src/surface/wld.c
+++ b/src/surface/wld.c
@@ -1077,11 +1077,11 @@ pointer_handle_axis(void *data, struct wl_pointer
*pointer,
}
static const struct wl_pointer_listener pointer_listener = {
- pointer_handle_enter,
- pointer_handle_leave,
- pointer_handle_motion,
- pointer_handle_button,
- pointer_handle_axis,
+ .enter = pointer_handle_enter,
+ .leave = pointer_handle_leave,
+ .motion = pointer_handle_motion,
+ .button = pointer_handle_button,
+ .axis = pointer_handle_axis,
};
static void
-----------------------------------------------------------------------
Summary of changes:
src/surface/wld.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/surface/wld.c b/src/surface/wld.c
index 9ef3c40..cc543da 100644
--- a/src/surface/wld.c
+++ b/src/surface/wld.c
@@ -1077,11 +1077,11 @@ pointer_handle_axis(void *data, struct wl_pointer
*pointer,
}
static const struct wl_pointer_listener pointer_listener = {
- pointer_handle_enter,
- pointer_handle_leave,
- pointer_handle_motion,
- pointer_handle_button,
- pointer_handle_axis,
+ .enter = pointer_handle_enter,
+ .leave = pointer_handle_leave,
+ .motion = pointer_handle_motion,
+ .button = pointer_handle_button,
+ .axis = pointer_handle_axis,
};
static void
--
NetSurf Framebuffer library
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org