Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
5f161178
Commit
5f161178
authored
Sep 27, 2006
by
Michael Jerris
Browse files
fix gcc4 warnings under -Wall
darcs-hash:20060927161912-16063-3cb3e0706edc40d34d609b104f5654d53e1232db.gz
parent
9d2db63d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libsofia-sip-ua/su/su_addrinfo.c
libsofia-sip-ua/su/su_addrinfo.c
+1
-1
libsofia-sip-ua/tport/tport_type_udp.c
libsofia-sip-ua/tport/tport_type_udp.c
+1
-1
No files found.
libsofia-sip-ua/su/su_addrinfo.c
View file @
5f161178
...
...
@@ -932,7 +932,7 @@ void su_freeaddrinfo(su_addrinfo_t *res)
/** Return string describing address translation error. */
char
const
*
su_gai_strerror
(
int
errcode
)
{
return
gai_strerror
(
errcode
);
return
(
char
const
*
)
gai_strerror
(
errcode
);
}
/** Resolve socket address into hostname and service name.
...
...
libsofia-sip-ua/tport/tport_type_udp.c
View file @
5f161178
...
...
@@ -254,7 +254,7 @@ int tport_recv_dgram(tport_t *self)
return
-
1
;
}
else
if
(
n
<=
1
)
{
SU_DEBUG_1
((
"%s(%p): runt of
%u
bytes
\n
"
,
"tport_recv_dgram"
,
self
,
n
));
SU_DEBUG_1
((
"%s(%p): runt of
"
MOD_ZD
"
bytes
\n
"
,
"tport_recv_dgram"
,
self
,
n
));
msg_destroy
(
msg
),
self
->
tp_msg
=
NULL
;
return
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