Unverified Commit fc967763 authored by Victor Ananjevsky's avatar Victor Ananjevsky Committed by GitHub

Merge pull request #26 from step-/fix-list-print-null

Fix --list prints empty cell as "(null)"
parents b7fe8d33 6172f375
......@@ -1162,7 +1162,7 @@ print_col (GtkTreeModel * model, GtkTreeIter * iter, gint num)
g_free (buf);
}
else
g_printf ("%s", val);
g_printf ("%s", val ? val : "");
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment