apps/graphics/pdcurs34: Fix missing ; typo in last commit

This commit is contained in:
Alan Carvalho de Assis 2017-11-22 10:47:03 -06:00 committed by Gregory Nutt
parent 56a7ded061
commit f20015b164

View File

@ -504,7 +504,7 @@ int PDC_color_content(short color, short *red, short *green, short *blue)
fbstate = &fbscreen->fbstate;
#ifdef PDCURSES_MONOCHROME
greylevel = DIVROUND(fbstate->greylevel[color] * 1000, 255)
greylevel = DIVROUND(fbstate->greylevel[color] * 1000, 255);
*red = greylevel;
*green = greylevel;
*blue = greylevel;