<div dir="ltr"><div>Fine with me.  Pushed.<br></div>--Jason Ekstrand<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 24, 2014 at 5:35 PM, Bryce W. Harrington <span dir="ltr"><<a href="mailto:b.harrington@samsung.com" target="_blank">b.harrington@samsung.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Use function linking syntax instead of variable linking, to resolve two<br>
warnings:<br>
<br>
    wayland-server.h:167: warning: explicit link request to 'wl_list_remove' could not be resolved<br>
    wayland-server.h:188: warning: explicit link request to 'wl_list_remove' could not be resolved<br>
<br>
Signed-off-by: Bryce Harrington <<a href="mailto:b.harrington@samsung.com">b.harrington@samsung.com</a>><br>
---<br>
 src/wayland-server.h |    4 ++--<br>
 1 file changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/wayland-server.h b/src/wayland-server.h<br>
index 7fc5b47..0a3f2f6 100644<br>
--- a/src/wayland-server.h<br>
+++ b/src/wayland-server.h<br>
@@ -168,7 +168,7 @@ wl_client_post_no_memory(struct wl_client *client);<br>
  * }<br>
  * \endcode<br>
  *<br>
- * If you need to remove a listener from a signal, use #wl_list_remove.<br>
+ * If you need to remove a listener from a signal, use wl_list_remove().<br>
  *<br>
  * \code<br>
  * wl_list_remove(&your_listener.link);<br>
@@ -189,7 +189,7 @@ struct wl_listener {<br>
  * Compositors as well as the server can provide signals. Observers are<br>
  * wl_listener's that are added through #wl_signal_add. Signals are emitted<br>
  * using #wl_signal_emit, which will invoke all listeners until that<br>
- * listener is removed by #wl_list_remove (or whenever the signal is<br>
+ * listener is removed by wl_list_remove() (or whenever the signal is<br>
  * destroyed).<br>
  *<br>
  * \sa wl_listener for more information on using wl_signal<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.7.9.5<br>
_______________________________________________<br>
wayland-devel mailing list<br>
<a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
</font></span></blockquote></div><br></div>