X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fservices_discovery%2Fhal.c;h=6aad8d524bb34d31c2651b5497b9f6efd6da9154;hb=bb80eba03b6afd245a9695b8a75985de73b8de23;hp=f40b33b770e856e2ec4d91056d2ab6d801076450;hpb=2cb472dba008f7d877ffe6bae9c5575253365282;p=vlc diff --git a/modules/services_discovery/hal.c b/modules/services_discovery/hal.c index f40b33b770..6aad8d524b 100644 --- a/modules/services_discovery/hal.c +++ b/modules/services_discovery/hal.c @@ -4,7 +4,7 @@ * Copyright (C) 2004 the VideoLAN team * $Id$ * - * Authors: Clément Stenac + * Authors: Clément Stenac * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -115,14 +115,14 @@ static int Open( vlc_object_t *p_this ) p_sys->p_ctx = libhal_ctx_new(); if( !p_sys->p_ctx ) { - msg_Err( p_sd, "Unable to create HAL context") ; + msg_Err( p_sd, "unable to create HAL context") ; free( p_sys ); return VLC_EGENERIC; } p_connection = dbus_bus_get( DBUS_BUS_SYSTEM, &dbus_error ); if( dbus_error_is_set( &dbus_error ) ) { - msg_Err( p_sd, "Unable to connect to DBUS: %s", dbus_error.message ); + msg_Err( p_sd, "unable to connect to DBUS: %s", dbus_error.message ); dbus_error_free( &dbus_error ); free( p_sys ); return VLC_EGENERIC;