Fix win32 deserialization test fail

(cherry picked from commit 336a8b3bc2)
This commit is contained in:
Dave Hickin
2016-02-18 18:56:04 +00:00
parent 94781061cf
commit 0c2c6a4173

View File

@@ -358,7 +358,7 @@ namespace epics { namespace pvData {
words[j] = 0;
for (uint32 remaining = (bytes - longs * 8), j = 0; j < remaining; j++)
words[i] |= (buffer->getByte() & 0xffL) << (8 * j);
words[i] |= (buffer->getByte() & 0xffLL) << (8 * j);
}