From 425846dedbca749a4a19e8a8827887bb70201c8d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 24 Jun 2008 15:09:33 -0400 Subject: [PATCH] Oops. Fix thinko in previous commit. --- src/cairo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo.c b/src/cairo.c index 85cb4cda5..afc076dbf 100644 --- a/src/cairo.c +++ b/src/cairo.c @@ -110,7 +110,7 @@ static void _cairo_set_error (cairo_t *cr, cairo_status_t status) { if (status == CAIRO_STATUS_SUCCESS) - return status; + return; /* Don't overwrite an existing error. This preserves the first * error, which is the most significant. */