From d5d960185208e331f8182aa471d54b44ccef1007 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Wed, 26 Aug 2009 19:10:51 -0500 Subject: [PATCH] Fix and tighten an assertion Signed-off-by: Federico Mena Quintero --- gtk/gtkfilesystemmodel.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk/gtkfilesystemmodel.c b/gtk/gtkfilesystemmodel.c index a8755f6793..ca967f9c7c 100644 --- a/gtk/gtkfilesystemmodel.c +++ b/gtk/gtkfilesystemmodel.c @@ -1122,8 +1122,7 @@ gtk_file_system_model_set_directory (GtkFileSystemModel *model, GFile * dir, const gchar * attributes) { - g_return_if_fail (GTK_IS_FILE_SYSTEM_MODEL (model)); - g_return_if_fail (dir == NULL || G_IS_FILE (dir)); + g_assert (G_IS_FILE (dir)); model->dir = g_object_ref (dir); model->attributes = g_strdup (attributes);