aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-10-09 12:20:35 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-10-09 12:20:35 -0500
commitf5dc3e7b2cc6f0d6d126fd67cc1a4677f698d106 (patch)
tree9f1f970cc3fa2847919c9d5b5a0bfa9aa044db9d /src
parentf9413135057b326177f6ae239a70ab10c02af9de (diff)
downloadayatana-indicator-datetime-f5dc3e7b2cc6f0d6d126fd67cc1a4677f698d106.tar.gz
ayatana-indicator-datetime-f5dc3e7b2cc6f0d6d126fd67cc1a4677f698d106.tar.bz2
ayatana-indicator-datetime-f5dc3e7b2cc6f0d6d126fd67cc1a4677f698d106.zip
remove stray semicolon found by Coverity
Diffstat (limited to 'src')
-rw-r--r--src/datetime-prefs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c
index d80a59f..952dce1 100644
--- a/src/datetime-prefs.c
+++ b/src/datetime-prefs.c
@@ -308,7 +308,7 @@ proxy_ready (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self)
g_dbus_proxy_call (priv->proxy, "GetUsingNtp", NULL, G_DBUS_CALL_FLAGS_NONE, -1,
priv->ntp_query_cancel, (GAsyncReadyCallback)ntp_query_answered, self);
}
- if (priv->tz_query_cancel == NULL); {
+ if (priv->tz_query_cancel == NULL) {
priv->tz_query_cancel = g_cancellable_new();
g_dbus_proxy_call (priv->proxy, "GetTimezone", NULL, G_DBUS_CALL_FLAGS_NONE, -1,
priv->tz_query_cancel, (GAsyncReadyCallback)tz_query_answered, self);