mirror of
https://github.com/X11Libre/xf86-video-r128.git
synced 2026-03-23 17:19:19 +00:00
fix FTBS on debian: missing statement after label
Compilers on recent Debian (gcc as well as clang) break compilation if there's no statement after a label: > ../../src/r128_driver.c:571:1: error: expected statement > } Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-r128/-/merge_requests/12>
This commit is contained in:
@@ -548,6 +548,7 @@ void R128GetPanelInfoFromBIOS(xf86OutputPtr output)
|
||||
"function properly\n");
|
||||
}
|
||||
return;
|
||||
|
||||
fallback:
|
||||
#ifdef WSDISPLAYIO_GINFO
|
||||
if ((!r128_output->PanelXRes || !r128_output->PanelYRes) &&
|
||||
@@ -568,6 +569,7 @@ fallback:
|
||||
}
|
||||
}
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
||||
/* Read PLL parameters from BIOS block. Default to typical values if there
|
||||
|
||||
Reference in New Issue
Block a user