Skip to content

Commit 852a2c9

Browse files
authored
Merge pull request #15 from gnustep/singleclick
fix type warning
2 parents 4b9b411 + b90b83c commit 852a2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FSNode/FSNIcon.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ - (NSString*) description
156156
s = [s stringByAppendingString:[node path]];
157157
if ([node isMountPoint])
158158
s = [s stringByAppendingString:@" isMountPoint "];
159-
s = [s stringByAppendingString: [NSString stringWithFormat:@" gridIndex: %d", gridIndex]];
159+
s = [s stringByAppendingString: [NSString stringWithFormat:@" gridIndex: %u", (unsigned)gridIndex]];
160160
s = [s stringByAppendingString:@" }"];
161161
return s;
162162
}

0 commit comments

Comments
 (0)