diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-27 23:01:46 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-29 05:47:03 +0800 |
commit | aaa40d7f56dd6ee56d33e016c5b4111a997a4d52 (patch) | |
tree | 4b5c0072e83ccf47030df02a26d44184a676dc3b | |
parent | ce80dceb7cbcbb1393b2519a142add4083af01dc (diff) | |
download | gsoc2013-epiphany-aaa40d7f56dd6ee56d33e016c5b4111a997a4d52.tar.gz gsoc2013-epiphany-aaa40d7f56dd6ee56d33e016c5b4111a997a4d52.tar.zst gsoc2013-epiphany-aaa40d7f56dd6ee56d33e016c5b4111a997a4d52.zip |
history-service: remove unnecessary type cast
https://bugzilla.gnome.org/show_bug.cgi?id=672926
-rw-r--r-- | lib/history/ephy-history-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c index 635758849..7d5a49e9a 100644 --- a/lib/history/ephy-history-service.c +++ b/lib/history/ephy-history-service.c @@ -357,7 +357,7 @@ ephy_history_service_execute_quit (EphyHistoryService *self, gpointer data, gpoi static gpointer run_history_service_thread (EphyHistoryService *self) { - EphyHistoryServicePrivate *priv = EPHY_HISTORY_SERVICE (self)->priv; + EphyHistoryServicePrivate *priv = self->priv; EphyHistoryServiceMessage *message; g_assert (priv->history_thread == g_thread_self ()); |