Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
libdmapsharing
Commits
bbd1b867
Commit
bbd1b867
authored
May 28, 2010
by
W. Michael Petullo
Browse files
Fixed compiler warnings
Signed-off-by:
W. Michael Petullo
<
mike@flyn.org
>
parent
9722dd42
Changes
3
Hide whitespace changes
Inline
Side-by-side
libdmapsharing/daap-share.c
View file @
bbd1b867
...
...
@@ -140,7 +140,7 @@ daap_share_set_property (GObject *object,
const
GValue
*
value
,
GParamSpec
*
pspec
)
{
DAAPShare
*
share
=
DAAP_SHARE
(
object
);
//
DAAPShare *share = DAAP_SHARE (object);
switch
(
prop_id
)
{
default:
...
...
@@ -155,7 +155,7 @@ daap_share_get_property (GObject *object,
GValue
*
value
,
GParamSpec
*
pspec
)
{
DAAPShare
*
share
=
DAAP_SHARE
(
object
);
//
DAAPShare *share = DAAP_SHARE (object);
switch
(
prop_id
)
{
default:
...
...
libdmapsharing/dmap-share.h
View file @
bbd1b867
...
...
@@ -221,6 +221,8 @@ void _dmap_share_add_playlist_to_mlcl (gpointer id,
GSList
*
_dmap_share_build_filter
(
gchar
*
filterstr
);
void
dmap_share_free_filter
(
GSList
*
filter
);
/* Virtual methods (libsoup callbacks with default implementation): */
void
_dmap_share_content_codes
(
DMAPShare
*
share
,
SoupServer
*
server
,
...
...
libdmapsharing/dpap-share.c
View file @
bbd1b867
...
...
@@ -137,7 +137,7 @@ dpap_share_set_property (GObject *object,
const
GValue
*
value
,
GParamSpec
*
pspec
)
{
DPAPShare
*
share
=
DPAP_SHARE
(
object
);
//
DPAPShare *share = DPAP_SHARE (object);
switch
(
prop_id
)
{
/* FIXME: */
...
...
@@ -153,7 +153,7 @@ dpap_share_get_property (GObject *object,
GValue
*
value
,
GParamSpec
*
pspec
)
{
DPAPShare
*
share
=
DPAP_SHARE
(
object
);
//
DPAPShare *share = DPAP_SHARE (object);
switch
(
prop_id
)
{
default:
...
...
@@ -446,12 +446,6 @@ add_entry_to_mlcl (gpointer id,
return
;
}
static
void
debug_param
(
gpointer
key
,
gpointer
val
,
gpointer
user_data
)
{
g_debug
(
"%s %s"
,
(
char
*
)
key
,
(
char
*
)
val
);
}
static
void
databases_browse_xxx
(
DMAPShare
*
share
,
SoupServer
*
server
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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