Fix uninitialized variable warning.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11809 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2016-07-15 10:23:46 +00:00
parent d0fa58f700
commit db05cd1a92

View File

@ -279,7 +279,7 @@ void Fl_X11_Screen_Driver::init()
if (!fl_display) open_display();
int dpi_by_randr = 0;
float dpih, dpiv;
float dpih = 0.0f, dpiv = 0.0f;
#if USE_XRANDR
static XRRSizes_type XRRSizes_f = NULL;
if (!XRRSizes_f) {