Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
6d6e6158
Commit
6d6e6158
authored
Oct 31, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input_stream: pass const url to input_stream_open()
parent
a9290398
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
input_stream.c
src/input_stream.c
+1
-1
input_stream.h
src/input_stream.h
+1
-1
No files found.
src/input_stream.c
View file @
6d6e6158
...
...
@@ -52,7 +52,7 @@ void input_stream_global_finish(void)
}
bool
input_stream_open
(
struct
input_stream
*
is
,
char
*
url
)
input_stream_open
(
struct
input_stream
*
is
,
c
onst
c
har
*
url
)
{
is
->
seekable
=
false
;
is
->
ready
=
false
;
...
...
src/input_stream.h
View file @
6d6e6158
...
...
@@ -57,7 +57,7 @@ void input_stream_global_finish(void);
/* if an error occurs for these 3 functions, then -1 is returned and errno
for the input stream is set */
bool
input_stream_open
(
struct
input_stream
*
is
,
char
*
url
);
input_stream_open
(
struct
input_stream
*
is
,
c
onst
c
har
*
url
);
bool
input_stream_seek
(
struct
input_stream
*
is
,
off_t
offset
,
int
whence
);
...
...
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