summaryrefslogtreecommitdiff
path: root/fontforge/sfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'fontforge/sfd.c')
-rw-r--r--fontforge/sfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fontforge/sfd.c b/fontforge/sfd.c
index dde1fd15..25c15d72 100644
--- a/fontforge/sfd.c
+++ b/fontforge/sfd.c
@@ -1626,10 +1626,10 @@ static void SFDDumpOtfFeatNames(FILE *sfd, SplineFont *sf) {
fprintf( sfd, "OtfFeatName: '%c%c%c%c' ",
fn->tag>>24, fn->tag>>16, fn->tag>>8, fn->tag );
for ( on=fn->names; on!=NULL; on=on->next ) {
- fprintf( sfd, " %d ", on->lang );
+ fprintf( sfd, "%d ", on->lang );
SFDDumpUTF7Str(sfd, on->name);
- putc('\n',sfd);
}
+ putc('\n',sfd);
}
}