1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

Fix build for gcc on mac. Hudson should use clang :D

This commit is contained in:
Leo Franchi
2012-02-25 23:52:34 -05:00
parent cbb5bac075
commit a8440c72e4

View File

@@ -88,7 +88,8 @@
} }
-(void)printBacktrace; -(void)printBacktrace;
{ {
for(int x = 3; x < frameCount; x++) { int x;
for(x = 3; x < frameCount; x++) {
if(frameStrings[x] == NULL) { break; } if(frameStrings[x] == NULL) { break; }
printf("%s\n", frameStrings[x]); printf("%s\n", frameStrings[x]);
} }