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
51d06873
Commit
51d06873
authored
Dec 14, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed several gcc warnings on unused debug variables
parent
849d7895
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
decoder_api.c
src/decoder_api.c
+1
-1
inotify_update.c
src/inotify_update.c
+1
-0
player_thread.c
src/player_thread.c
+1
-1
No files found.
src/decoder_api.c
View file @
51d06873
...
@@ -355,7 +355,7 @@ enum decoder_command
...
@@ -355,7 +355,7 @@ enum decoder_command
decoder_tag
(
G_GNUC_UNUSED
struct
decoder
*
decoder
,
struct
input_stream
*
is
,
decoder_tag
(
G_GNUC_UNUSED
struct
decoder
*
decoder
,
struct
input_stream
*
is
,
const
struct
tag
*
tag
)
const
struct
tag
*
tag
)
{
{
const
struct
decoder_control
*
dc
=
decoder
->
dc
;
G_GNUC_UNUSED
const
struct
decoder_control
*
dc
=
decoder
->
dc
;
enum
decoder_command
cmd
;
enum
decoder_command
cmd
;
assert
(
dc
->
state
==
DECODE_STATE_DECODE
);
assert
(
dc
->
state
==
DECODE_STATE_DECODE
);
...
...
src/inotify_update.c
View file @
51d06873
...
@@ -80,6 +80,7 @@ tree_add_watch_directory(struct watch_directory *directory)
...
@@ -80,6 +80,7 @@ tree_add_watch_directory(struct watch_directory *directory)
static
void
static
void
tree_remove_watch_directory
(
struct
watch_directory
*
directory
)
tree_remove_watch_directory
(
struct
watch_directory
*
directory
)
{
{
G_GNUC_UNUSED
bool
found
=
g_tree_remove
(
inotify_directories
,
bool
found
=
g_tree_remove
(
inotify_directories
,
GINT_TO_POINTER
(
directory
->
descriptor
));
GINT_TO_POINTER
(
directory
->
descriptor
));
assert
(
found
);
assert
(
found
);
...
...
src/player_thread.c
View file @
51d06873
...
@@ -426,7 +426,7 @@ static bool player_seek_decoder(struct player *player)
...
@@ -426,7 +426,7 @@ static bool player_seek_decoder(struct player *player)
*/
*/
static
void
player_process_command
(
struct
player
*
player
)
static
void
player_process_command
(
struct
player
*
player
)
{
{
struct
decoder_control
*
dc
=
player
->
dc
;
G_GNUC_UNUSED
struct
decoder_control
*
dc
=
player
->
dc
;
switch
(
pc
.
command
)
{
switch
(
pc
.
command
)
{
case
PLAYER_COMMAND_NONE
:
case
PLAYER_COMMAND_NONE
:
...
...
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