Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
312324cd
Commit
312324cd
authored
Jun 15, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: Use const char * for psz_destdir.
parent
7e7f3bd7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/vlc_update.h
include/vlc_update.h
+1
-1
src/misc/update.c
src/misc/update.c
+2
-2
No files found.
include/vlc_update.h
View file @
312324cd
...
...
@@ -57,7 +57,7 @@ VLC_EXPORT( update_t *, __update_New, ( vlc_object_t * ) );
VLC_EXPORT
(
void
,
update_Delete
,
(
update_t
*
)
);
VLC_EXPORT
(
void
,
update_Check
,
(
update_t
*
,
void
(
*
callback
)(
void
*
,
bool
),
void
*
)
);
VLC_EXPORT
(
bool
,
update_NeedUpgrade
,
(
update_t
*
)
);
VLC_EXPORT
(
void
,
update_Download
,
(
update_t
*
,
char
*
)
);
VLC_EXPORT
(
void
,
update_Download
,
(
update_t
*
,
c
onst
c
har
*
)
);
VLC_EXPORT
(
update_release_t
*
,
update_GetRelease
,
(
update_t
*
)
);
/**
...
...
src/misc/update.c
View file @
312324cd
...
...
@@ -1447,7 +1447,7 @@ void update_DownloadReal( update_download_thread_t *p_udt );
* \param dir to store the download file
* \return nothing
*/
void
update_Download
(
update_t
*
p_update
,
char
*
psz_destdir
)
void
update_Download
(
update_t
*
p_update
,
c
onst
c
har
*
psz_destdir
)
{
assert
(
p_update
);
...
...
@@ -1690,7 +1690,7 @@ bool update_NeedUpgrade( update_t *p_update )
return
false
;
}
void
update_Download
(
update_t
*
p_update
,
char
*
psz_destdir
)
void
update_Download
(
update_t
*
p_update
,
c
onst
c
har
*
psz_destdir
)
{
(
void
)
p_update
;
(
void
)
psz_destdir
;
}
...
...
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