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:
Carl Worth 2007-04-09 17:30:06 -07:00
parent a7d8e52cc4
commit bd98295100
2 changed files with 2 additions and 0 deletions

View file

@ -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);

View file

@ -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);