[cairo-commit] cairo/src cairo_pdf_surface.c,1.19,1.20

Kristian Hogsberg commit at pdx.freedesktop.org
Fri Mar 18 12:26:05 PST 2005


Committed by: krh

Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv10635/src

Modified Files:
	cairo_pdf_surface.c 
Log Message:
2005-03-18  Kristian Høgsberg  <krh at redhat.com>

        * src/cairo_pdf_surface.c (cairo_set_target_pdf_as_file)
        (cairo_set_target_pdf): Remove return statements from these
        functions (bug #2137).



Index: cairo_pdf_surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo_pdf_surface.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- cairo_pdf_surface.c	16 Mar 2005 20:08:41 -0000	1.19
+++ cairo_pdf_surface.c	18 Mar 2005 20:26:03 -0000	1.20
@@ -2322,11 +2322,11 @@
 	return;
     }
 
-    return _cairo_set_target_pdf_as_stream (cr, stream,
-					    width_inches,
-					    height_inches,
-					    x_pixels_per_inch,
-					    y_pixels_per_inch);
+    _cairo_set_target_pdf_as_stream (cr, stream,
+				     width_inches,
+				     height_inches,
+				     x_pixels_per_inch,
+				     y_pixels_per_inch);
 }
 
 void
@@ -2345,9 +2345,9 @@
 	return;
     }
 
-    return _cairo_set_target_pdf_as_stream (cr, stream,
-					    width_inches,
-					    height_inches,
-					    x_pixels_per_inch,
-					    y_pixels_per_inch);
+    _cairo_set_target_pdf_as_stream (cr, stream,
+				     width_inches,
+				     height_inches,
+				     x_pixels_per_inch,
+				     y_pixels_per_inch);
 }




More information about the cairo-commit mailing list