1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 21:57:41 +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;
{
for(int x = 3; x < frameCount; x++) {
int x;
for(x = 3; x < frameCount; x++) {
if(frameStrings[x] == NULL) { break; }
printf("%s\n", frameStrings[x]);
}