summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-08-06 11:59:35 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-08-06 11:59:35 +0000
commit8fda215cc015ca6909c344f0f221a60b7b9f86f6 (patch)
tree9b4b1da74f92c91fba1e249b881ae18f6d1e2036
parent3d75f278011b023a93136fe5f52cab97c8fb7215 (diff)
downloadgtk+-8fda215cc015ca6909c344f0f221a60b7b9f86f6.tar.gz
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
-rw-r--r--ChangeLog6
-rw-r--r--modules/printbackends/cups/gtkcupsutils.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9efa5b1192..f89863d424 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
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
* gtk/gtkiconview.c
* gtk/gtkrange.c
diff --git a/modules/printbackends/cups/gtkcupsutils.c b/modules/printbackends/cups/gtkcupsutils.c
index 09cd6906cf..d11653b359 100644
--- a/modules/printbackends/cups/gtkcupsutils.c
+++ b/modules/printbackends/cups/gtkcupsutils.c
@@ -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);