--- mplayer-1.0~rc1-old/libvo/gnome_screensaver.c 2007-10-25 00:35:43.000000000 -0700 +++ mplayer-1.0~rc1/libvo/gnome_screensaver.c 2007-11-01 13:05:10.000000000 -0700 @@ -40,7 +40,7 @@ error = NULL; connection = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (connection == NULL) { - mp_msg(MSGT_VO, MSGL_ERR, + mp_msg(MSGT_VO, MSGL_V, funcname, MSGTR_OpenBusConnectionError, error->message); g_error_free(error); return; @@ -56,7 +56,7 @@ error = NULL; ret = dbus_g_proxy_call(proxy, "UnInhibit", &error, G_TYPE_UINT, - cookie, G_TYPE_INVALID); + cookie, G_TYPE_INVALID, G_TYPE_INVALID); /* If this fails, try the GNOME screensaver 2.14 API */ if (!ret && error->domain == DBUS_GERROR @@ -100,12 +100,12 @@ /* Check if it's a remote exception or a regular GError */ if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_REMOTE_EXCEPTION) { - mp_msg(MSGT_VO, MSGL_ERR, + mp_msg(MSGT_VO, MSGL_V, funcname, MSGTR_RemoteMethodException, dbus_g_error_get_name(error), error->message); } else { - mp_msg(MSGT_VO, MSGL_ERR, + mp_msg(MSGT_VO, MSGL_V, funcname, MSGTR_GError, error->message); } g_error_free(error);