]> err.no Git - varnish/commitdiff
I like code that compiles
authordes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 18 Oct 2007 11:10:25 +0000 (11:10 +0000)
committerdes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 18 Oct 2007 11:10:25 +0000 (11:10 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2111 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_vrt_esi.c

index 0e1cff1bced43f61f31a01e198c2437824b03b90..a5ae57dbb093ea1487bc20c8bb6739355da35742 100644 (file)
@@ -58,7 +58,7 @@ static void
 add_piece(txt t, int kind)
 {
 
-       printf("K%d \"%.*s\"\n", kind, t.e - t.b, t.b);
+       printf("K%d \"%.*s\"\n", kind, (int)(t.e - t.b), t.b);
 }
 
 static void
@@ -75,7 +75,7 @@ vxml_error(struct sess *sp, const char *p, txt t, size_t off, int i, const char
                ellipsis = 1;
        }
        q = buf;
-       q += sprintf(buf, "at %d: %s \"", off + (p - t.b), err);
+       q += sprintf(buf, "at %d: %s \"", (int)(off + (p - t.b)), err);
        while (i > 0) {
                if (*p >= ' ' && *p <= '~') {
                        *q++ = *p;