Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
c4dca907
Commit
c4dca907
authored
Jun 08, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Use correct data type
parent
d9686e70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/reportxml.c
src/reportxml.c
+4
-4
No files found.
src/reportxml.c
View file @
c4dca907
...
...
@@ -418,7 +418,7 @@ reportxml_node_t * reportxml_node_parse_xmlnode(xmlNodePtr xmlnode)
reportxml_node_t
*
reportxml_node_copy
(
reportxml_node_t
*
node
)
{
reportxml_node_t
*
ret
;
size_t
count
;
s
size_t
count
;
size_t
i
;
if
(
!
node
)
...
...
@@ -710,7 +710,7 @@ reportxml_database_t * reportxml_database_new(void)
int
reportxml_database_add_report
(
reportxml_database_t
*
db
,
reportxml_t
*
report
)
{
reportxml_node_t
*
root
;
size_t
count
;
s
size_t
count
;
size_t
i
;
if
(
!
db
||
!
report
)
...
...
@@ -755,7 +755,7 @@ reportxml_node_t * reportxml_database_build_node(reportxml_database_t *db,
reportxml_node_t
*
found
;
reportxml_node_t
*
ret
;
char
*
template
;
size_t
count
;
s
size_t
count
;
size_t
i
;
if
(
!
db
||
!
id
)
...
...
@@ -854,7 +854,7 @@ reportxml_t * reportxml_database_build_report(reportxml_database_t *db
reportxml_node_t
*
attach_to
;
reportxml_node_type_t
type
;
reportxml_t
*
ret
;
size_t
count
;
s
size_t
count
;
size_t
i
;
if
(
!
db
||
!
id
)
...
...
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