summaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 4f02e479..8626e91e 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.72 2009/10/30 18:43:24 kristaps Exp $ */
+/* $Id: html.c,v 1.73 2009/10/30 18:50:11 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -673,7 +673,7 @@ html_idcat(char *dst, const char *src, int sz)
sz--;
for ( ; *src != '\0' && sz > 1; src++) {
- ssz = snprintf(dst, sz, "%.2x", *src);
+ ssz = snprintf(dst, (size_t)sz, "%.2x", *src);
sz -= ssz;
dst += ssz;
}