<div dir="ltr"><div dir="ltr">On Fri, Dec 6, 2019 at 12:12 PM Frediano Ziglio <<a href="mailto:fziglio@redhat.com">fziglio@redhat.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
In the title I would say "Factor out" instead of "Implement </blockquote><div> OK</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">> +static void spice_usb_device_widget_add_err_msg(SpiceUsbDeviceWidget *self,<br>
> +                                                gchar *new_err_msg)<br>
<br>
Why not spice_usb_device_widget_append_err_msg ?<br>
"add" seems to suggest a list of errors.<br><br></blockquote><div>But it is (or can be) a list of error messages.</div><div>See below, it even puts a newline after the old text.</div><div>As far as I understand, it prepares to handle multiple errors occurring one after another while handling the same event.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">> +    if (priv->err_msg) {<br>
> +        /* Append the new error message to err_msg,<br>
> +           but only if it's *not* already there! */<br>
> +        if (!strstr(priv->err_msg, new_err_msg)) {<br>
> +            gchar *old_err_msg = priv->err_msg;<br>
> +            priv->err_msg = g_strdup_printf("%s\n%s", old_err_msg,<br>
> new_err_msg);<br></blockquote><div><br></div></div></div>