Avoid warning about uninitialized variable

master
Yevgen Muntyan 2008-05-06 14:07:19 -05:00
parent 098e111622
commit 85228b67e8
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ _moo_folder_model_set_sort_flags (MooFolderModel *model,
if (model->priv->sort_flags != flags)
{
int *new_order;
int *new_order = NULL;
GtkTreePath *path = gtk_tree_path_new ();
model->priv->sort_flags = flags;