checkpolicy: fix spacing in output message

The output formatting had two items crammed together without a space.
Add a space.

Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
Eric Paris 2011-08-18 09:58:19 -04:00
parent acb4ecaa01
commit e759841c08

View file

@ -365,7 +365,7 @@ static void display_filename_trans(policydb_t *p, FILE *fp)
display_id(p, fp, SYM_TYPES, ft->ttype - 1, "");
display_id(p, fp, SYM_CLASSES, ft->tclass - 1, ":");
display_id(p, fp, SYM_TYPES, ft->otype - 1, "");
fprintf(fp, "%s\n", ft->name);
fprintf(fp, " %s\n", ft->name);
}
}