mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-29 12:40:14 +01:00
Add a couple of missing newline characters
A return statement that's not at the end of a function really needs a line of whitespace after it.
This commit is contained in:
parent
a7d8e52cc4
commit
bd98295100
2 changed files with 2 additions and 0 deletions
|
|
@ -1275,6 +1275,7 @@ _cairo_bentley_ottmann_tessellate_bo_edges (cairo_bo_edge_t *edges,
|
|||
status = _cairo_bo_event_queue_init (&event_queue, edges, num_edges);
|
||||
if (status)
|
||||
return status;
|
||||
|
||||
_cairo_bo_sweep_line_init (&sweep_line);
|
||||
_cairo_bo_traps_init (&bo_traps, traps, xmin, ymin, xmax, ymax);
|
||||
|
||||
|
|
|
|||
|
|
@ -643,6 +643,7 @@ cairo_type1_font_write (cairo_type1_font_t *font,
|
|||
status = cairo_type1_font_write_header (font, name);
|
||||
if (status)
|
||||
return status;
|
||||
|
||||
font->header_size = _cairo_output_stream_get_position (font->output);
|
||||
|
||||
status = cairo_type1_font_write_private_dict (font, name);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue