aboutsummaryrefslogtreecommitdiffstats
path: root/LispREPLController.m
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2011-03-15 23:19:46 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2011-03-15 23:19:46 -0400
commitcc6272bd1577b277b41d8b431758475f55f3e361 (patch)
tree06d507550bce62bfe9864f37ee77ac481c53bff3 /LispREPLController.m
parent9992988f581532a7db50b57594fc3e346398f9fa (diff)
downloadmoxie-cc6272bd1577b277b41d8b431758475f55f3e361.tar.gz
moxie-cc6272bd1577b277b41d8b431758475f55f3e361.zip
Fixes for 64 bit builds.
Diffstat (limited to 'LispREPLController.m')
-rw-r--r--LispREPLController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/LispREPLController.m b/LispREPLController.m
index d8a9f0e..acf6178 100644
--- a/LispREPLController.m
+++ b/LispREPLController.m
@@ -650,8 +650,8 @@ shouldChangeTextInRange: (NSRange)affectedCharRange
forPartialWordRange: (NSRange)charRange
indexOfSelectedItem: (int *)i
{
- NSLog(@"[LispREPLController textView %@ completions: %@ forPartialWordRange: (%d, %d) indexOfSelectedItem: %d]",
- textView, words, charRange.location, charRange.length, *i);
+ NSLog(@"[LispREPLController textView %@ completions: %@ forPartialWordRange: (%u, %u) indexOfSelectedItem: %d]",
+ textView, words, (unsigned)charRange.location, (unsigned)charRange.length, *i);
return words;
}