From: Ben Pfaff Date: Tue, 25 Dec 2018 20:41:27 +0000 (-0800) Subject: cairo: Remove debug print. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=1b014fd004135359c6e37b1dfda5168d7745965a cairo: Remove debug print. --- diff --git a/src/output/cairo.c b/src/output/cairo.c index 49d8f0bc88..0176d3caa2 100644 --- a/src/output/cairo.c +++ b/src/output/cairo.c @@ -1641,10 +1641,7 @@ xr_create_text_renderer (struct xr_driver *xr, const struct text_item *item) struct cell_style *style = pool_alloc (tab->container, sizeof *style); *style = (struct cell_style) CELL_STYLE_INITIALIZER; if (item->font) - { - puts (item->font); - style->font = pool_strdup (tab->container, item->font); - } + style->font = pool_strdup (tab->container, item->font); style->font_size = item->font_size; style->bold = item->bold; style->italic = item->italic;