Commit 96ef04c8 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix build on !FreeBSD systems.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3451 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent f1bccfae
......@@ -81,8 +81,8 @@ mybe64enc(void *pp, uint64_t u)
{
unsigned char *p = (unsigned char *)pp;
be32enc(p, u >> 32);
be32enc(p + 4, u & 0xffffffff);
mybe32enc(p, u >> 32);
mybe32enc(p + 4, u & 0xffffffff);
}
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment