dix: fix two compiler warnings (old-style function definition).
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
b874a5c0aa
commit
6093d3eb1d
|
@ -1906,7 +1906,7 @@ InitFonts (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
GetDefaultPointSize ()
|
GetDefaultPointSize (void)
|
||||||
{
|
{
|
||||||
return 120;
|
return 120;
|
||||||
}
|
}
|
||||||
|
@ -2018,7 +2018,7 @@ find_old_font(XID id)
|
||||||
}
|
}
|
||||||
|
|
||||||
Font
|
Font
|
||||||
GetNewFontClientID()
|
GetNewFontClientID(void)
|
||||||
{
|
{
|
||||||
return FakeClientID(0);
|
return FakeClientID(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue