Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
0a6d48c2
Commit
0a6d48c2
authored
Jan 14, 2007
by
Eric Wong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More sparse fixes now that we've re-enabled -Wmissing-prototypes
git-svn-id:
https://svn.musicpd.org/mpd/trunk@5260
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
5220c2c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
charConv.c
src/charConv.c
+6
-6
playlist.c
src/playlist.c
+1
-1
No files found.
src/charConv.c
View file @
0a6d48c2
...
...
@@ -27,18 +27,18 @@
#ifdef HAVE_ICONV
#include <iconv.h>
iconv_t
char_conv_iconv
;
static
iconv_t
char_conv_iconv
;
#endif
char
*
char_conv_to
=
NULL
;
char
*
char_conv_from
=
NULL
;
mpd_sint8
char_conv_same
=
0
;
mpd_sint8
char_conv_use_iconv
=
0
;
static
char
*
char_conv_to
;
static
char
*
char_conv_from
;
static
mpd_sint8
char_conv_same
;
static
mpd_sint8
char_conv_use_iconv
;
/* 1 is to use latin1ToUtf8
0 is not to use latin1/utf8 converter
-1 is to use utf8ToLatin1*/
mpd_sint8
char_conv_latin1ToUtf8
=
0
;
static
mpd_sint8
char_conv_latin1ToUtf8
=
0
;
#define BUFFER_SIZE 1024
...
...
src/playlist.c
View file @
0a6d48c2
...
...
@@ -923,7 +923,7 @@ int stopPlaylist(int fd)
return
0
;
}
int
playPlaylistOrderNumber
(
int
fd
,
int
orderNum
)
static
int
playPlaylistOrderNumber
(
int
fd
,
int
orderNum
)
{
if
(
playerStop
(
fd
)
<
0
)
...
...
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