diff options
| author | Alexander Levin <al.le@rockbox.org> | 2010-05-16 15:15:29 +0000 |
|---|---|---|
| committer | Alexander Levin <al.le@rockbox.org> | 2010-05-16 15:15:29 +0000 |
| commit | 2e8bd81d4d0884cd07b716cf5a85789836bf427a (patch) | |
| tree | 8aea6b642c14b1485d602dd247056b5ade18a8d0 | |
| parent | 26230ae04859f277a6d6ee0d7e603c0788ca7136 (diff) | |
| download | rockbox-2e8bd81d4d0884cd07b716cf5a85789836bf427a.zip rockbox-2e8bd81d4d0884cd07b716cf5a85789836bf427a.tar.gz rockbox-2e8bd81d4d0884cd07b716cf5a85789836bf427a.tar.bz2 rockbox-2e8bd81d4d0884cd07b716cf5a85789836bf427a.tar.xz | |
Improve spacing in comments
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26091 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/convbdf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/convbdf.c b/tools/convbdf.c index d6f3da8..91c33c8 100644 --- a/tools/convbdf.c +++ b/tools/convbdf.c @@ -16,7 +16,7 @@ #define ROTATE /* define this for the new, rotated format */ /* BEGIN font.h*/ -/* loadable font magic and version #*/ +/* loadable font magic and version number */ #ifdef ROTATE #define VERSION "RB12" /* newer version */ #else @@ -26,7 +26,7 @@ /* * bitmap_t helper macros */ -typedef unsigned short bitmap_t; /* bitmap image unit size*/ +typedef unsigned short bitmap_t; /* bitmap image unit size */ /* Number of words to hold a pixel line of width x pixels */ #define BITMAP_BITSPERIMAGE (sizeof(bitmap_t) * 8) |