add missing newline to error message

This commit is contained in:
Daniel Micay 2012-06-07 11:42:17 -04:00
parent 2d30ac51c6
commit ab76e301ed
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static GtkTreeModel *create_completion_model(VteTerminal *vte) {
NULL, NULL, NULL);
if (!content) {
g_printerr("no content returned for completion");
g_printerr("no content returned for completion\n");
return GTK_TREE_MODEL(store);
}