Remove apparently superfluous parameter in call to sprintf

This commit is contained in:
Xavi Artigas 2013-05-06 10:29:22 +02:00
parent d5696b0122
commit 6b1f767559

View file

@ -17,7 +17,7 @@
// Do any additional setup after loading the view, typically from a nib.
gst_backend = [[GStreamerBackend alloc] init];
label.text = [NSString stringWithFormat:@"Welcome to %@!", [gst_backend getGStreamerVersion], nil];
label.text = [NSString stringWithFormat:@"Welcome to %@!", [gst_backend getGStreamerVersion]];
}
- (void)didReceiveMemoryWarning