]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlist.m
* more compilation fixes
[vlc] / modules / gui / macosx / playlist.m
index 07d8edc31978ad4d7332ffe07188ca53acbe08e8..ed84eb5efb564b731e5ebaacf326954b02056f07 100644 (file)
@@ -741,7 +741,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
             {
                 o_real_filename = o_filename;
             }
-            playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], "export-xspf" );
+            playlist_Export( p_playlist, 
+                [o_real_filename fileSystemRepresentation], 
+                p_playlist->p_local_category, "export-xspf" );
         }
         else
         {
@@ -759,7 +761,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
             {
                 o_real_filename = o_filename;
             }
-            playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], p_playlist->p_local_category, "export-m3u" );
+            playlist_Export( p_playlist, 
+                [o_real_filename fileSystemRepresentation],
+                p_playlist->p_local_category, "export-m3u" );
         }
     }
     vlc_object_release( p_playlist );