diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-18 12:43:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-18 12:43:06 +0800 |
commit | a763c26876c7e56401452f76e1d372bb945aa8b7 (patch) | |
tree | b1279b9399a74b501780435d30acd30c208a8c17 | |
parent | f19618ac7f06b7f9e4bb2d7ce2e75de6e8554737 (diff) | |
download | gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.gz gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.tar.zst gsoc2013-evolution-a763c26876c7e56401452f76e1d372bb945aa8b7.zip |
Fix a little compiler warning I caused.
svn path=/trunk/; revision=36010
-rw-r--r-- | shell/e-shell.c | 2 |
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; } |