summaryrefslogtreecommitdiff
path: root/src/stylesheet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stylesheet.c')
-rw-r--r--src/stylesheet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stylesheet.c b/src/stylesheet.c
index 80944db..2091c1a 100644
--- a/src/stylesheet.c
+++ b/src/stylesheet.c
@@ -691,6 +691,6 @@ void css_stylesheet_dump_selector(css_selector *selector, FILE *target)
*/
void css_stylesheet_dump_string(css_string *string, FILE *target)
{
- fprintf(target, "%.*s", string->len, string->ptr);
+ fprintf(target, "%.*s", (int) string->len, string->ptr);
}