mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 06:28:01 +02:00
observer: Fix build on suncc
Returning a void value is an error on suncc and causes a warning on msvc: cairo-surface-observer.c(1273) : warning C4098: '_cairo_surface_observer_release_source_image' : 'void' function returning a value
This commit is contained in:
parent
b0aec95c8e
commit
60e04ff49e
1 changed files with 1 additions and 1 deletions
|
|
@ -1270,7 +1270,7 @@ _cairo_surface_observer_release_source_image (void *abstract_s
|
|||
{
|
||||
cairo_surface_observer_t *surface = abstract_surface;
|
||||
|
||||
return _cairo_surface_release_source_image (surface->target, image, image_extra);
|
||||
_cairo_surface_release_source_image (surface->target, image, image_extra);
|
||||
}
|
||||
|
||||
static cairo_surface_t *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue