From 6b1f7675598c92ffe968699e4784b65671eda482 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Mon, 6 May 2013 10:29:22 +0200 Subject: [PATCH] Remove apparently superfluous parameter in call to sprintf --- gst-sdk/tutorials/xcode iOS/Tutorial 1/ViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-sdk/tutorials/xcode iOS/Tutorial 1/ViewController.m b/gst-sdk/tutorials/xcode iOS/Tutorial 1/ViewController.m index 805d4be14e..96c8b29245 100644 --- a/gst-sdk/tutorials/xcode iOS/Tutorial 1/ViewController.m +++ b/gst-sdk/tutorials/xcode iOS/Tutorial 1/ViewController.m @@ -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