[gnome-logs/wip/dking/fixups: 1/3] css: Add missing semicolon




commit 064c9466e75888b7ccf4d84d419ec74970095b07
Author: Maximiliano Sandoval R <msandova gnome org>
Date:   Mon Oct 11 00:26:25 2021 +0200

    css: Add missing semicolon

 src/gl-util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gl-util.c b/src/gl-util.c
index 50993f7..2088a6a 100644
--- a/src/gl-util.c
+++ b/src/gl-util.c
@@ -592,7 +592,7 @@ pango_font_description_to_css (PangoFontDescription *desc)
     }
   if (set & PANGO_FONT_MASK_SIZE)
     {
-      g_string_append_printf (s, "font-size: %dpt", pango_font_description_get_size (desc) / PANGO_SCALE);
+      g_string_append_printf (s, "font-size: %dpt;", pango_font_description_get_size (desc) / PANGO_SCALE);
     }
 
   g_string_append (s, "}");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]