Clarify compiler-pacifier in frame.c

* src/frame.c (Fx_parse_geometry): Pacify the compiler in a
different way, so that the human reader can more easily see
that the initializations are unnecessary.
This commit is contained in:
Paul Eggert 2019-08-23 11:17:38 -07:00
parent ad9c8b029c
commit 6cd5678784

View file

@ -5327,7 +5327,7 @@ or a list (- N) meaning -N pixels relative to bottom/right corner.
On Nextstep, this just calls `ns-parse-geometry'. */)
(Lisp_Object string)
{
int geometry, x = 0, y = 0;
int geometry, x UNINIT, y UNINIT;
unsigned int width, height;
Lisp_Object result;