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:
Michael Natterer 2008-08-06 11:59:35 +00:00 committed by Michael Natterer
parent 3d75f27801
commit 8fda215cc0
2 changed files with 7 additions and 1 deletions

View File

@ -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>
* gtk/gtkcombobox.c

View File

@ -1303,7 +1303,7 @@ void
gtk_cups_connection_test_free (GtkCupsConnectionTest *test)
{
if (test == NULL)
return FALSE;
return;
test->current_addr = NULL;
httpAddrFreeList (test->addrlist);