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
355e90ef
Commit
355e90ef
authored
Sep 14, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Corrected used type (int) -> (size_t)
parent
40c5751a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/cfgfile.h
src/cfgfile.h
+1
-1
src/yp.c
src/yp.c
+1
-1
No files found.
src/cfgfile.h
View file @
355e90ef
...
...
@@ -271,7 +271,7 @@ struct ice_config_tag {
char
*
yp_url
[
MAX_YP_DIRECTORIES
];
int
yp_url_timeout
[
MAX_YP_DIRECTORIES
];
int
yp_touch_interval
[
MAX_YP_DIRECTORIES
];
in
t
num_yp_directories
;
size_
t
num_yp_directories
;
};
typedef
struct
{
...
...
src/yp.c
View file @
355e90ef
...
...
@@ -216,7 +216,7 @@ static ypdata_t *find_yp_mount (ypdata_t *mounts, const char *mount)
void
yp_recheck_config
(
ice_config_t
*
config
)
{
in
t
i
;
size_
t
i
;
struct
yp_server
*
server
;
ICECAST_LOG_DEBUG
(
"Updating YP configuration"
);
...
...
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