diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-08 20:24:55 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-08 20:24:55 +0200 |
commit | bf946c17ca7cb2014aad604c253f4fa4660684da (patch) | |
tree | 9a4b977bb958c71b4190e02832a3a9c22761bd70 | |
parent | 6d4485e7d6403d19b1ae2041ab36c28424b5c805 (diff) |
Fix typo
* console-client/vga-dynafont.c (dynafont_lookup_internal): Fix typo.
-rw-r--r-- | console-client/vga-dynafont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-client/vga-dynafont.c b/console-client/vga-dynafont.c index 3e0ec3ff..f72e45de 100644 --- a/console-client/vga-dynafont.c +++ b/console-client/vga-dynafont.c @@ -846,7 +846,7 @@ dynafont_lookup_internal (dynafont_t df, bdf_font_t font, chr->refs = 1; chr->character = (wide_chr | attr); - /* Copy the glyph bitmap, taking into account double-width charcters. */ + /* Copy the glyph bitmap, taking into account double-width characters. */ { int height = (glyph->bbox.height > 32) ? 32 : glyph->bbox.height; int bwidth = (glyph->bbox.width + 7) / 8; |