aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/wire_format_unittest.cc
diff options
context:
space:
mode:
authorGravatar Ezequiel Lara Gomez <ezegomez@amazon.com>2015-04-27 09:35:27 +0100
committerGravatar Ezequiel Lara Gomez <ezegomez@amazon.com>2015-04-27 09:35:27 +0100
commitfb28d73204819b2c1083416e405f68816b5a1306 (patch)
tree60cf4873cb63504044a47430ea35eec19da02e9c /src/google/protobuf/wire_format_unittest.cc
parentfe7b5667eb446766a1c2f30c691662a36f3df1f8 (diff)
Fix unittest in i386
Diffstat (limited to 'src/google/protobuf/wire_format_unittest.cc')
-rw-r--r--src/google/protobuf/wire_format_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/wire_format_unittest.cc b/src/google/protobuf/wire_format_unittest.cc
index a3062a6a..46650605 100644
--- a/src/google/protobuf/wire_format_unittest.cc
+++ b/src/google/protobuf/wire_format_unittest.cc
@@ -767,7 +767,7 @@ TEST(WireFormatTest, RepeatedScalarsDifferentTagSizes) {
}
TEST(WireFormatTest, CompatibleTypes) {
- const int64 data = 0x100000000;
+ const int64 data = 0x100000000LL;
unittest::Int64Message msg1;
msg1.set_data(data);
string serialized;