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
6e1e0d3f
Commit
6e1e0d3f
authored
Oct 10, 2006
by
Michael Jerris
Browse files
msvc warnings fixes
darcs-hash:20061009211509-16063-7c8f72f49b3f4255583fb0e223c377bd4a1d23be.gz
parent
67b2755d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
libsofia-sip-ua/sip/sip_tag_class.c
libsofia-sip-ua/sip/sip_tag_class.c
+1
-1
libsofia-sip-ua/su/sofia-sip/su_strlst.h
libsofia-sip-ua/su/sofia-sip/su_strlst.h
+1
-1
libsofia-sip-ua/su/su_strlst.c
libsofia-sip-ua/su/su_strlst.c
+1
-1
No files found.
libsofia-sip-ua/sip/sip_tag_class.c
View file @
6e1e0d3f
...
...
@@ -422,7 +422,7 @@ tagi_t *sip_url_query_as_taglist(su_home_t *home, char const *query,
hc
=
(
msg_hclass_t
*
)
sip_tag_list
[
j
]
->
tt_magic
;
if
(
n
==
1
&&
strncasecmp
(
hnv
,
hc
->
hc_short
,
1
)
==
0
)
break
;
else
if
(
n
==
hc
->
hc_len
&&
strncasecmp
(
hnv
,
hc
->
hc_name
,
n
)
==
0
)
else
if
(
n
==
(
size_t
)
hc
->
hc_len
&&
strncasecmp
(
hnv
,
hc
->
hc_name
,
n
)
==
0
)
break
;
}
...
...
libsofia-sip-ua/su/sofia-sip/su_strlst.h
View file @
6e1e0d3f
...
...
@@ -81,7 +81,7 @@ SU_DLL char const *su_slprintf(su_strlst_t *self, char const *fmt, ...);
SU_DLL
char
const
*
su_slvprintf
(
su_strlst_t
*
self
,
char
const
*
fmt
,
va_list
ap
);
/** Get a numbered item from list. */
SU_DLL
char
const
*
su_strlst_item
(
su_strlst_t
const
*
,
u
n
si
gned
i
);
SU_DLL
char
const
*
su_strlst_item
(
su_strlst_t
const
*
,
usi
ze_t
i
);
/** Set a numbered item to list */
SU_DLL
char
const
*
su_strlst_set_item
(
su_strlst_t
*
self
,
unsigned
i
,
...
...
libsofia-sip-ua/su/su_strlst.c
View file @
6e1e0d3f
...
...
@@ -453,7 +453,7 @@ char const *su_slvprintf(su_strlst_t *self, char const *fmt, va_list ap)
* Pointer to string, if item exists, or NULL if index is out of bounds or
* list does not exist.
*/
char
const
*
su_strlst_item
(
su_strlst_t
const
*
self
,
u
n
si
gned
i
)
char
const
*
su_strlst_item
(
su_strlst_t
const
*
self
,
usi
ze_t
i
)
{
if
(
self
&&
i
<
self
->
sl_len
)
return
self
->
sl_list
[
i
];
...
...
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