aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-08-18 12:43:06 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-18 12:43:06 +0800
commita763c26876c7e56401452f76e1d372bb945aa8b7 (patch)
treeb1279b9399a74b501780435d30acd30c208a8c17 /shell
parentf19618ac7f06b7f9e4bb2d7ce2e75de6e8554737 (diff)
downloadgsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.gz
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.bz2
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.lz
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.xz
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.zst
gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.zip
Fix a little compiler warning I caused.
svn path=/trunk/; revision=36010
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 948f7c41e3..f48978dfd5 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1220,7 +1220,7 @@ e_shell_go_online (EShell *shell,
gboolean
e_shell_get_crash_recovery (EShell *shell)
{
- g_return_val_if_fail (E_IS_SHELL (shell), NULL);
+ g_return_val_if_fail (E_IS_SHELL (shell), FALSE);
return shell->priv->crash_recovery;
}