Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
aeaf6737
Commit
aeaf6737
authored
Aug 20, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(compilation fixes for my previous commit)
parent
f0ec49da
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
src/misc/configuration.c
src/misc/configuration.c
+2
-4
src/misc/messages.c
src/misc/messages.c
+3
-3
src/misc/modules.c
src/misc/modules.c
+1
-2
No files found.
src/misc/configuration.c
View file @
aeaf6737
...
...
@@ -2,7 +2,7 @@
* configuration.c management of the modules configuration
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: configuration.c,v 1.3
7 2002/08/15 12:11:15
sam Exp $
* $Id: configuration.c,v 1.3
8 2002/08/20 18:25:42
sam Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -374,9 +374,7 @@ void config_Duplicate( module_t *p_module, module_config_t *p_orig )
p_module
->
p_config
[
i
].
ppsz_list
[
j
]
=
NULL
;
}
/* the callback pointer is only valid when the module is loaded so this
* value is set in module_activate() and reset in module_deactivate() */
p_module
->
p_config
[
i
].
pf_callback
=
NULL
;
p_module
->
p_config
[
i
].
pf_callback
=
p_orig
[
i
].
pf_callback
;
}
}
...
...
src/misc/messages.c
View file @
aeaf6737
...
...
@@ -4,7 +4,7 @@
* modules, especially intf modules. See config.h for output configuration.
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: messages.c,v 1.
8 2002/08/10 19:23:06
sam Exp $
* $Id: messages.c,v 1.
9 2002/08/20 18:25:42
sam Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -445,7 +445,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
if
(
p_this
->
p_vlc
->
b_color
)
{
fprintf
(
stderr
,
"["
GREEN
"%.2x"
GRAY
":"
GREEN
"%.6x"
GRAY
"] "
"%s%s: %s%s"
GRAY
"
\n
"
,
p_this
->
p_vlc
->
i_
uniqu
e
,
"%s%s: %s%s"
GRAY
"
\n
"
,
p_this
->
p_vlc
->
i_
instanc
e
,
p_item
->
i_object_id
,
p_item
->
psz_module
,
ppsz_type
[
i_type
],
ppsz_color
[
i_type
],
p_item
->
psz_msg
);
...
...
@@ -453,7 +453,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
else
{
fprintf
(
stderr
,
"[%.2x:%.6x] %s%s: %s
\n
"
,
p_this
->
p_vlc
->
i_
uniqu
e
,
p_item
->
i_object_id
,
p_this
->
p_vlc
->
i_
instanc
e
,
p_item
->
i_object_id
,
p_item
->
psz_module
,
ppsz_type
[
i_type
],
p_item
->
psz_msg
);
}
...
...
src/misc/modules.c
View file @
aeaf6737
...
...
@@ -2,7 +2,7 @@
* modules.c : Builtin and plugin modules management functions
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules.c,v 1.8
8 2002/08/15 12:22:45
sam Exp $
* $Id: modules.c,v 1.8
9 2002/08/20 18:25:42
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Ethan C. Baldridge <BaldridgeE@cadmus.com>
...
...
@@ -684,7 +684,6 @@ static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file )
if
(
CallEntry
(
p_module
)
!=
0
)
{
/* We couldn't call module_init() */
msg_Err
(
p_this
,
"failed calling entry point in `%s'"
,
psz_file
);
vlc_object_destroy
(
p_module
);
module_unload
(
handle
);
return
-
1
;
...
...
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