diff options
author | Thomas Martitz <kugel@rockbox.org> | 2011-03-05 18:56:47 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2011-03-05 18:56:47 +0000 |
commit | 29e84dff51c9a49ad5795b7b9a7f17373f9844b4 (patch) | |
tree | 5f521e4c2638960a1d42332831530009c77f77b4 /tools | |
parent | 9edd6d4ee912273690b2600e8c52183dfa058eb9 (diff) |
Remove a few whitespaces to get under the magical string length of 509 (i.e. fix yellow)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29524 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/convbdf.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/convbdf.c b/tools/convbdf.c index 671312e66b..84ee6b26ae 100644 --- a/tools/convbdf.c +++ b/tools/convbdf.c @@ -1387,7 +1387,7 @@ int gen_c_source(struct font* pf, char *path) else sprintf(buf, "0, /* fixed width */"); - fprintf(ofp, "/* Exported structure definition. */\n" + fprintf(ofp, "/* Exported structure definition. */\n" "const struct font sysfont = {\n" " %d, /* maxwidth */\n" " %d, /* height */\n" @@ -1399,16 +1399,16 @@ int gen_c_source(struct font* pf, char *path) " %s /* offset */\n" " %s\n" " %d, /* defaultchar */\n" - " %d, /* bits_size */\n" - " -1, /* font fd */\n" - " 0, /* buffer start */\n" - " 0, /* ^ position */\n" - " 0, /* ^ end */\n" - " 0, /* ^ size */\n" + " %d, /* bits_size */\n" + " -1, /* font fd */\n" + " 0, /* buffer start */\n" + " 0, /* ^ position */\n" + " 0, /* ^ end */\n" + " 0, /* ^ size */\n" " {{0,0,0,0,0},0,0,0}, /* cache */\n" - " 0, /* */\n" - " 0, /* */\n" - " 0, /* */\n" + " 0, /* */\n" + " 0, /* */\n" + " 0, /* */\n" "};\n" "#endif /* HAVE_LCD_BITMAP */\n", pf->maxwidth, pf->height, |