Fix build warning
Commit c543f59696
introduced the following warnings:
objects/screen.c:307:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
objects/screen.c:307:1: warning: no previous prototype for ‘screen_scan_randr_monitors’ [-Wmissing-prototypes]
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
bf652914dd
commit
3e75e800ad
|
@ -304,6 +304,7 @@ screen_scan_randr_monitors(void)
|
||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
static bool
|
||||||
screen_scan_randr_monitors(void)
|
screen_scan_randr_monitors(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue