remove return value, this function returns void.
2008-08-06 Michael Natterer <mitch@imendio.com> * modules/printbackends/cups/gtkcupsutils.c (gtk_cups_connection_test_free): remove return value, this function returns void. svn path=/trunk/; revision=21022
This commit is contained in:

committed by
Michael Natterer

parent
3d75f27801
commit
8fda215cc0
@ -1,3 +1,9 @@
|
|||||||
|
2008-08-06 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* modules/printbackends/cups/gtkcupsutils.c
|
||||||
|
(gtk_cups_connection_test_free): remove return value, this
|
||||||
|
function returns void.
|
||||||
|
|
||||||
2008-08-06 Michael Natterer <mitch@imendio.com>
|
2008-08-06 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gtk/gtkcombobox.c
|
* gtk/gtkcombobox.c
|
||||||
|
@ -1303,7 +1303,7 @@ void
|
|||||||
gtk_cups_connection_test_free (GtkCupsConnectionTest *test)
|
gtk_cups_connection_test_free (GtkCupsConnectionTest *test)
|
||||||
{
|
{
|
||||||
if (test == NULL)
|
if (test == NULL)
|
||||||
return FALSE;
|
return;
|
||||||
|
|
||||||
test->current_addr = NULL;
|
test->current_addr = NULL;
|
||||||
httpAddrFreeList (test->addrlist);
|
httpAddrFreeList (test->addrlist);
|
||||||
|
Reference in New Issue
Block a user