Split out documentation into subfolders.
[platform/upstream/gstreamer.git] / examples / tutorials / xcode iOS / Tutorial 5 / gst_ios_init.m
@@ -516,19 +516,19 @@ gst_ios_init (void)
   NSString *tmp = NSTemporaryDirectory();
   NSString *cache = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Caches"];
   NSString *docs = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
-    
+
   const gchar *resources_dir = [resources UTF8String];
   const gchar *tmp_dir = [tmp UTF8String];
   const gchar *cache_dir = [cache UTF8String];
   const gchar *docs_dir = [docs UTF8String];
   gchar *ca_certificates;
-    
+
   g_setenv ("TMP", tmp_dir, TRUE);
   g_setenv ("TEMP", tmp_dir, TRUE);
   g_setenv ("TMPDIR", tmp_dir, TRUE);
   g_setenv ("XDG_RUNTIME_DIR", resources_dir, TRUE);
   g_setenv ("XDG_CACHE_HOME", cache_dir, TRUE);
-    
+
   g_setenv ("HOME", docs_dir, TRUE);
   g_setenv ("XDG_DATA_DIRS", resources_dir, TRUE);
   g_setenv ("XDG_CONFIG_DIRS", resources_dir, TRUE);
@@ -539,7 +539,7 @@ gst_ios_init (void)
   ca_certificates = g_build_filename (resources_dir, "ssl", "certs", "ca-certificates.crt", NULL);
   g_setenv ("CA_CERTIFICATES", ca_certificates, TRUE);
   g_free (ca_certificates);
-    
+
   gst_init (NULL, NULL);
 
   #if defined(GST_IOS_PLUGIN_NLE) || defined(GST_IOS_PLUGINS_GES)