aboutsummaryrefslogtreecommitdiffstats
path: root/Source/NoodleLineNumberView.m
diff options
context:
space:
mode:
Diffstat (limited to 'Source/NoodleLineNumberView.m')
-rw-r--r--Source/NoodleLineNumberView.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/NoodleLineNumberView.m b/Source/NoodleLineNumberView.m
index 8307367f..39b435f7 100644
--- a/Source/NoodleLineNumberView.m
+++ b/Source/NoodleLineNumberView.m
@@ -350,7 +350,7 @@ typedef NSRange (*RangeOfLineIMP)(id object, SEL selector, NSRange range);
// portion. Need to compensate for the clipview's coordinates.
// Line numbers are internally stored starting at 0
- labelText = [NSString stringWithFormat:@"%lu", (NSUInteger)(line + 1)];
+ labelText = [NSString stringWithFormat:@"%llu", (unsigned long long)(line + 1)];
// How many digits has the current line number?
NSUInteger idx = line + 1;