Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
915ba6e0
Commit
915ba6e0
authored
Aug 13, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use %s even if all strings are currently free of percent characters
parent
7c809307
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_demux.h
include/vlc_demux.h
+1
-1
include/vlc_interface.h
include/vlc_interface.h
+1
-1
modules/gui/skins2/src/logger.cpp
modules/gui/skins2/src/logger.cpp
+2
-2
src/libvlc.c
src/libvlc.c
+1
-1
No files found.
include/vlc_demux.h
View file @
915ba6e0
...
@@ -174,7 +174,7 @@ static inline bool demux_IsForced( demux_t *p_demux, const char *psz_name )
...
@@ -174,7 +174,7 @@ static inline bool demux_IsForced( demux_t *p_demux, const char *psz_name )
#define STANDARD_DEMUX_INIT_MSG( msg ) do { \
#define STANDARD_DEMUX_INIT_MSG( msg ) do { \
DEMUX_INIT_COMMON(); \
DEMUX_INIT_COMMON(); \
msg_Dbg( p_demux, msg ); } while(0)
msg_Dbg( p_demux,
"%s",
msg ); } while(0)
#define DEMUX_BY_EXTENSION( ext ) \
#define DEMUX_BY_EXTENSION( ext ) \
demux_t *p_demux = (demux_t *)p_this; \
demux_t *p_demux = (demux_t *)p_this; \
...
...
include/vlc_interface.h
View file @
915ba6e0
...
@@ -132,7 +132,7 @@ VLC_EXPORT( int, __intf_Eject, ( vlc_object_t *, const char * ) );
...
@@ -132,7 +132,7 @@ VLC_EXPORT( int, __intf_Eject, ( vlc_object_t *, const char * ) );
freopen( "CONOUT$", "w", stderr ); \
freopen( "CONOUT$", "w", stderr ); \
freopen( "CONIN$", "r", stdin ); \
freopen( "CONIN$", "r", stdin ); \
} \
} \
msg_Info( p_intf, COPYRIGHT_MESSAGE ); \
msg_Info( p_intf,
"%s",
COPYRIGHT_MESSAGE ); \
msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
"anymore, open a command-line window, go to the " \
"anymore, open a command-line window, go to the " \
"directory where you installed VLC and run " \
"directory where you installed VLC and run " \
...
...
modules/gui/skins2/src/logger.cpp
View file @
915ba6e0
...
@@ -62,12 +62,12 @@ void Logger::destroy( intf_thread_t *pIntf )
...
@@ -62,12 +62,12 @@ void Logger::destroy( intf_thread_t *pIntf )
void
Logger
::
error
(
const
string
&
rMsg
)
void
Logger
::
error
(
const
string
&
rMsg
)
{
{
msg_Err
(
getIntf
(),
rMsg
.
c_str
()
);
msg_Err
(
getIntf
(),
"%s"
,
rMsg
.
c_str
()
);
}
}
void
Logger
::
warn
(
const
string
&
rMsg
)
void
Logger
::
warn
(
const
string
&
rMsg
)
{
{
msg_Warn
(
getIntf
(),
rMsg
.
c_str
()
);
msg_Warn
(
getIntf
(),
"%s"
,
rMsg
.
c_str
()
);
}
}
src/libvlc.c
View file @
915ba6e0
...
@@ -227,7 +227,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
...
@@ -227,7 +227,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
#endif
#endif
/* Announce who we are - Do it only for first instance ? */
/* Announce who we are - Do it only for first instance ? */
msg_Dbg
(
p_libvlc
,
COPYRIGHT_MESSAGE
);
msg_Dbg
(
p_libvlc
,
"%s"
,
COPYRIGHT_MESSAGE
);
msg_Dbg
(
p_libvlc
,
"libvlc was configured with %s"
,
CONFIGURE_LINE
);
msg_Dbg
(
p_libvlc
,
"libvlc was configured with %s"
,
CONFIGURE_LINE
);
/* Initialize mutexes */
/* Initialize mutexes */
...
...
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