aboutsummaryrefslogtreecommitdiffstats
path: root/LispREPLController.m
diff options
context:
space:
mode:
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;
}