mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-28 09:53:23 +00:00
Monotone-Parent: f49f7655bf5cf28a4146c61d6f0897052be0f21b
Monotone-Revision: 2d5e6477bc1967b51bbbe812372dc78cb0f8f69f Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-07-29T14:16:53 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -81,7 +81,7 @@ const char *indentationStep = " ";
|
|||||||
max = [keys count];
|
max = [keys count];
|
||||||
|
|
||||||
[self _outputIndentation: anInt];
|
[self _outputIndentation: anInt];
|
||||||
printf ("{ (%ld) items\n", max);
|
printf ("{ (%ld) items\n", (long) max);
|
||||||
|
|
||||||
subIndent = anInt + 1;
|
subIndent = anInt + 1;
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ const char *indentationStep = " ";
|
|||||||
withIndentation: (NSInteger) anInt
|
withIndentation: (NSInteger) anInt
|
||||||
{
|
{
|
||||||
[self _outputIndentation: anInt];
|
[self _outputIndentation: anInt];
|
||||||
printf ("%lu =\n", count);
|
printf ("%lu =\n", (unsigned long) count);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) displayWithIndentation: (NSInteger) anInt
|
- (void) displayWithIndentation: (NSInteger) anInt
|
||||||
@@ -115,7 +115,7 @@ const char *indentationStep = " ";
|
|||||||
max = [self count];
|
max = [self count];
|
||||||
|
|
||||||
[self _outputIndentation: anInt];
|
[self _outputIndentation: anInt];
|
||||||
printf ("[ (%ld) items\n", max);
|
printf ("[ (%ld) items\n", (long) max);
|
||||||
|
|
||||||
subIndent = anInt + 1;
|
subIndent = anInt + 1;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user