diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-05-01 17:44:45 -0700 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-05-01 17:44:45 -0700 |
commit | e03ef8e4ac74e87cefaff1ef792d8a5bff54c926 (patch) | |
tree | 4315ef92049525603e6bed2330890884077b3ff3 /src | |
parent | 13b5da4c6715e536851dc974fc44ecd235885175 (diff) | |
download | ayatana-indicator-datetime-e03ef8e4ac74e87cefaff1ef792d8a5bff54c926.tar.gz ayatana-indicator-datetime-e03ef8e4ac74e87cefaff1ef792d8a5bff54c926.tar.bz2 ayatana-indicator-datetime-e03ef8e4ac74e87cefaff1ef792d8a5bff54c926.zip |
this is an assertion, so use g_assert()
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c index 8c3ae75..f7d1a78 100644 --- a/src/indicator-datetime.c +++ b/src/indicator-datetime.c @@ -272,7 +272,7 @@ menu_visible_notify_cb(GtkWidget * menu, G_GNUC_UNUSED GParamSpec *pspec, gpoint g_debug ("notify visible signal received"); self = INDICATOR_DATETIME (user_data); - g_return_if_fail (self != NULL); + g_assert (self != NULL); /* if the calendar widget's been created, set it to today's datë */ if (self->priv->ido_calendar != NULL) { |