Trivial: Fix some typos in comments and debug output.

This commit is contained in:
Gregory Nutt 2017-11-23 07:33:26 -06:00
parent 0205eeef52
commit dca1a3a01e
2 changed files with 3 additions and 3 deletions

View File

@ -242,9 +242,9 @@ struct pdc_fbstate_s
/* Font */
NXHANDLE hfont; /* Handled uses to access selected font */
NXHANDLE hfont; /* Handle used to access selected font */
#ifdef HAVE_BOLD_FONT
NXHANDLE hbold; /* Handled uses to access bold font */
NXHANDLE hbold; /* Handle used to access bold font */
#endif
uint8_t fheight; /* Height of the font (rows) */
uint8_t fwidth; /* Width of the font (pixels) */

View File

@ -286,7 +286,7 @@ int PDC_scr_open(int argc, char **argv)
goto errout_with_boldfont;
}
PDC_LOG(("Fonset (ID=%d):\n", PDCURSES_FONTID));
PDC_LOG(("Fontset (ID=%d):\n", PDCURSES_FONTID));
PDC_LOG((" mxheight: %u\n", fontset->mxheight));
PDC_LOG((" mxwidth: %u\n", fontset->mxwidth));
PDC_LOG((" mxbits: %u\n", fontset->mxbits));