diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:24:47 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:24:47 +0000 |
commit | cc2a341da52e22b5b2ed47ccebf3b51950bad5bf (patch) | |
tree | 3965030336e535495716a5858c4ae16e21cfb3fb /lib | |
parent | 632b647a30d36f2eec82a0d71f3ae6ecfd2c020b (diff) | |
download | klee-cc2a341da52e22b5b2ed47ccebf3b51950bad5bf.tar.gz |
Fix a Wformat warning.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@102877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/Executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index bc86dafb..79f89de7 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -555,7 +555,7 @@ void Executor::initializeGlobals(ExecutionState &state) { if (end && *end == '\0') { klee_message("NOTE: allocated global at asm specified address: %#08llx" " (%llu bytes)", - address, size); + (long long) address, (unsigned long long) size); mo = memory->allocateFixed(address, size, &*i); mo->isUserSpecified = true; // XXX hack; } |