Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
d712fe21
Commit
d712fe21
authored
16 years ago
by
Emmanuel Milou
Browse files
Options
Downloads
Patches
Plain Diff
fix unsignedness in dbus.c
parent
47fcfd5b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-gtk/src/dbus.c
+6
-6
6 additions, 6 deletions
sflphone-gtk/src/dbus.c
with
6 additions
and
6 deletions
sflphone-gtk/src/dbus.c
+
6
−
6
View file @
d712fe21
...
...
@@ -1266,7 +1266,7 @@ guint
dbus_get_max_calls
(
void
)
{
GError
*
error
=
NULL
;
g
u
int
calls
;
gint
calls
;
org_sflphone_SFLphone_ConfigurationManager_get_max_calls
(
configurationManagerProxy
,
&
calls
,
...
...
@@ -1276,7 +1276,7 @@ dbus_get_max_calls( void )
g_error_free
(
error
);
}
g_print
(
"GET MAX CALLS = %i
\n
"
,
calls
);
return
calls
;
return
(
guint
)
calls
;
}
void
...
...
@@ -1365,7 +1365,7 @@ guint
dbus_get_notify
(
void
)
{
g_print
(
"Before dbus_get_notif_level()
\n
"
);
g
u
int
level
;
gint
level
;
GError
*
error
=
NULL
;
org_sflphone_SFLphone_ConfigurationManager_get_notify
(
configurationManagerProxy
,
...
...
@@ -1379,7 +1379,7 @@ dbus_get_notify( void )
else
g_print
(
"Called dbus_get_notif_level
\n
"
);
return
level
;
return
(
guint
)
level
;
}
void
...
...
@@ -1401,7 +1401,7 @@ guint
dbus_get_mail_notify
(
void
)
{
g_print
(
"Before dbus_get_mail_notif_level()
\n
"
);
g
u
int
level
;
gint
level
;
GError
*
error
=
NULL
;
org_sflphone_SFLphone_ConfigurationManager_get_mail_notify
(
configurationManagerProxy
,
...
...
@@ -1415,7 +1415,7 @@ dbus_get_mail_notify( void )
else
g_print
(
"Called dbus_get_mail_notif_level
\n
"
);
return
level
;
return
(
guint
)
level
;
}
void
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment