summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/convbdf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/convbdf.c b/tools/convbdf.c
index d6f3da8fa4..91c33c8743 100644
--- a/tools/convbdf.c
+++ b/tools/convbdf.c
@@ -16,7 +16,7 @@
16#define ROTATE /* define this for the new, rotated format */ 16#define ROTATE /* define this for the new, rotated format */
17 17
18/* BEGIN font.h*/ 18/* BEGIN font.h*/
19/* loadable font magic and version #*/ 19/* loadable font magic and version number */
20#ifdef ROTATE 20#ifdef ROTATE
21#define VERSION "RB12" /* newer version */ 21#define VERSION "RB12" /* newer version */
22#else 22#else
@@ -26,7 +26,7 @@
26/* 26/*
27 * bitmap_t helper macros 27 * bitmap_t helper macros
28 */ 28 */
29typedef unsigned short bitmap_t; /* bitmap image unit size*/ 29typedef unsigned short bitmap_t; /* bitmap image unit size */
30 30
31/* Number of words to hold a pixel line of width x pixels */ 31/* Number of words to hold a pixel line of width x pixels */
32#define BITMAP_BITSPERIMAGE (sizeof(bitmap_t) * 8) 32#define BITMAP_BITSPERIMAGE (sizeof(bitmap_t) * 8)