Changing the HTTP's analyzers internals to use 64-bit integers.

(Gregor Maier).

This is the patch from #326, plus some cleanup.
This commit is contained in:
Robin Sommer 2011-04-27 21:25:51 -07:00
parent 80376653c2
commit 714289bd13
13 changed files with 56 additions and 62 deletions

View file

@ -397,7 +397,7 @@ bool XMLSerializationFormat::Write(char v, const char* tag)
bool XMLSerializationFormat::Write(uint16 v, const char* tag)
{
const char* tmp = fmt("%"PRIu16, v);
const char* tmp = fmt("%" PRIu16, v);
return WriteElem(tag, "uint16", tmp, strlen(tmp));
}