Commit 6da8c603 authored by Christophe Massiot's avatar Christophe Massiot

Cosmetic.

parent cba9544f
......@@ -7,17 +7,12 @@
<key>IBEditorPositions</key>
<dict>
<key>29</key>
<string>333 594 308 44 0 0 1152 746 </string>
<string>266 466 308 44 0 0 1152 746 </string>
<key>303</key>
<string>93 566 72 114 0 0 1600 1178 </string>
</dict>
<key>IBFramework Version</key>
<string>291.0</string>
<key>IBOpenObjects</key>
<array>
<integer>29</integer>
<integer>636</integer>
</array>
<key>IBSystem Version</key>
<string>6G30</string>
</dict>
......
......@@ -2,7 +2,7 @@
* sub.h
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sub.h,v 1.1 2002/11/15 18:10:26 fenrir Exp $
* $Id: sub.h,v 1.2 2003/01/02 23:50:55 massiot Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
......@@ -144,7 +144,7 @@ static inline
}
else
{
msg_Err( p_input, "failed to start subtitle demux" );
msg_Warn( p_input, "failed to start subtitle demux" );
if( p_sub->p_module )
{
module_Unneed( p_sub, p_sub->p_module );
......
......@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: intf.m,v 1.15 2003/01/02 23:09:30 massiot Exp $
* $Id: intf.m,v 1.16 2003/01/02 23:50:55 massiot Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -218,7 +218,7 @@ static void Run( intf_thread_t *p_intf )
[o_mi_stop setTitle: _NS("Stop")];
[o_mi_faster setTitle: _NS("Faster")];
[o_mi_slower setTitle: _NS("Slower")];
[o_mi_previous setTitle: _NS("Prev")];
[o_mi_previous setTitle: _NS("Previous")];
[o_mi_next setTitle: _NS("Next")];
[o_mi_loop setTitle: _NS("Loop")];
[o_mi_vol_up setTitle: _NS("Louder")];
......
......@@ -2,7 +2,7 @@
* ipv4.c: IPv4 network abstraction layer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: ipv4.c,v 1.10 2002/12/16 16:48:04 gbazin Exp $
* $Id: ipv4.c,v 1.11 2003/01/02 23:50:55 massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Mathias Kretschmer <mathias@research.att.com>
......@@ -319,10 +319,10 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
(char*)&imr, sizeof(struct ip_mreq) ) == -1 )
{
#ifdef HAVE_ERRNO_H
msg_Err( p_this, "failed to join IP multicast group (%s)",
strerror(errno) );
msg_Warn( p_this, "failed to join IP multicast group (%s)",
strerror(errno) );
#else
msg_Err( p_this, "failed to join IP multicast group" );
msg_Warn( p_this, "failed to join IP multicast group" );
#endif
#if defined( WIN32 ) || defined( UNDER_CE )
closesocket( i_handle );
......
......@@ -2,7 +2,7 @@
* sap.c : SAP interface module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.5 2002/12/10 00:02:29 gitan Exp $
* $Id: sap.c,v 1.6 2003/01/02 23:50:55 massiot Exp $
*
* Authors: Arnaud Schauly <gitan@via.ecp.fr>
*
......@@ -186,7 +186,7 @@ static void Run( intf_thread_t *p_intf )
if( !( p_network = module_Need( p_intf, "network", psz_network ) ) )
{
msg_Err( p_intf, "failed to open a connection (udp)" );
msg_Warn( p_intf, "failed to open a connection (udp)" );
return;
}
module_Unneed( p_intf, p_network );
......
......@@ -2,7 +2,7 @@
* modules.c : Builtin and plugin modules management functions
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules.c,v 1.108 2002/12/13 01:56:30 gbazin Exp $
* $Id: modules.c,v 1.109 2003/01/02 23:50:55 massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Ethan C. Baldridge <BaldridgeE@cadmus.com>
......@@ -496,8 +496,8 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
}
else if( psz_name != NULL && *psz_name )
{
msg_Err( p_this, "no %s module matching \"%s\" could be loaded",
psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
msg_Warn( p_this, "no %s module matching \"%s\" could be loaded",
psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
}
if( psz_shortcuts )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment