aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-04-01 18:14:08 +0000
committerGreg Clayton <gclayton@apple.com>2011-04-01 18:14:08 +0000
commit381f968161e2274c55706ead0baed444a26b5092 (patch)
tree7c4c981454167bbca07d2094397cf31a6b93efef /tools
parent0cd8be8ce3b11fe9c2591591c12cad5b688e6d0e (diff)
downloadlldb-381f968161e2274c55706ead0baed444a26b5092.tar.gz
Get rid of LONG_LONG_MAX and ULONG_LONG_MAX, and use LLONG_MAX and ULLONG_MAX
respectively. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@128720 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/debugserver/source/DNBDataRef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debugserver/source/DNBDataRef.cpp b/tools/debugserver/source/DNBDataRef.cpp
index 271c205e0..fb66fc053 100644
--- a/tools/debugserver/source/DNBDataRef.cpp
+++ b/tools/debugserver/source/DNBDataRef.cpp
@@ -207,7 +207,7 @@ uint64_t
DNBDataRef::GetDwarfEHPtr(offset_t *offset_ptr, uint32_t encoding) const
{
if (encoding == DW_EH_PE_omit)
- return ULONG_LONG_MAX; // Value isn't in the buffer...
+ return ULLONG_MAX; // Value isn't in the buffer...
uint64_t baseAddress = 0;
uint64_t addressValue = 0;