aboutsummaryrefslogtreecommitdiffhomepage
path: root/objectivec
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2017-11-15 13:42:33 -0500
committerGravatar GitHub <noreply@github.com>2017-11-15 13:42:33 -0500
commit696653d246b2639a6d8b18f7887a6cb9ddaf1114 (patch)
treeaf29cfe1280e7ddfa6bdf1158c6ea8a3cfd74b5a /objectivec
parent7daa320065f3bea2b54bf983337d1724f153422d (diff)
parent02129f0a87f272b49c4a880b483dd07ac0997db3 (diff)
Merge pull request #3892 from sergiocampama/32bit
Fixes 32bit tests.
Diffstat (limited to 'objectivec')
-rw-r--r--objectivec/Tests/GPBCodedInputStreamTests.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/objectivec/Tests/GPBCodedInputStreamTests.m b/objectivec/Tests/GPBCodedInputStreamTests.m
index d8e128f7..11f7ceaf 100644
--- a/objectivec/Tests/GPBCodedInputStreamTests.m
+++ b/objectivec/Tests/GPBCodedInputStreamTests.m
@@ -261,7 +261,7 @@
GPBCodedInputStream* input32 = [GPBCodedInputStream streamWithData:data];
XCTAssertEqual(value32, [input32 readInt32]);
- int64_t value64 = INT64_MIN | (0x01L << 31);
+ int64_t value64 = INT64_MIN | (0x01LL << 31);
GPBCodedInputStream* input64 = [GPBCodedInputStream streamWithData:data];
XCTAssertEqual(value64, [input64 readInt64]);
}