Remove a few redundant ;s

This commit is contained in:
Matthias Clasen 2012-06-23 17:58:51 -04:00
parent 02eed18a4e
commit c5561ff699
2 changed files with 2 additions and 2 deletions

View File

@ -1328,7 +1328,7 @@ initable_init (GInitable *initable,
proxy_flags = G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES;
if (manager->priv->flags & G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START)
proxy_flags |= G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START;;
proxy_flags |= G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START;
manager->priv->control_proxy = g_dbus_proxy_new_sync (manager->priv->connection,
proxy_flags,

View File

@ -828,7 +828,7 @@ g_resource_file_input_stream_close (GInputStream *stream,
static goffset
g_resource_file_input_stream_tell (GFileInputStream *stream)
{
GResourceFileInputStream *file = G_RESOURCE_FILE_INPUT_STREAM (stream);;
GResourceFileInputStream *file = G_RESOURCE_FILE_INPUT_STREAM (stream);
if (!G_IS_SEEKABLE (file->stream))
return 0;