Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9da31dde
Commit
9da31dde
authored
Nov 11, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Unicode wrapper
parent
3874df3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
modules/misc/playlist/old.c
modules/misc/playlist/old.c
+3
-8
No files found.
modules/misc/playlist/old.c
View file @
9da31dde
...
...
@@ -4,7 +4,7 @@
* Copyright (C) 2004 the VideoLAN team
* $Id$
*
* Authors: Cl
�
ent Stenac <zorglub@videolan.org>
* Authors: Cl
ém
ent Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -54,13 +54,8 @@ int Export_Old( vlc_object_t *p_this )
fprintf
(
p_export
->
p_file
,
PLAYLIST_FILE_HEADER
"
\n
"
);
for
(
i
=
0
;
i
<
p_export
->
p_root
->
i_children
;
i
++
)
{
char
*
psz_uri
;
utf8_fprintf
(
p_export
->
p_file
,
"%s
\n
"
,
p_export
->
p_root
->
pp_children
[
i
]
->
p_input
->
psz_name
)
;
psz_uri
=
ToLocale
(
p_export
->
p_root
->
pp_children
[
i
]
->
p_input
->
psz_name
);
fprintf
(
p_export
->
p_file
,
"%s
\n
"
,
psz_uri
);
LocaleFree
(
psz_uri
);
}
return
VLC_SUCCESS
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment