mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-09 14:11:47 +00:00
Avoid a 'missing braces around initializer' warning.
Static variables don't need initializers to be 0. Signed-off-by: Jeremy White <jwhite@codeweavers.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
parent
fe1b819a97
commit
35177a6c41
@ -44,7 +44,7 @@ static SpiceServer *server;
|
||||
static SpiceReplay *replay;
|
||||
static QXLWorker *qxl_worker = NULL;
|
||||
static gboolean started = FALSE;
|
||||
static QXLInstance display_sin = { 0, };
|
||||
static QXLInstance display_sin;
|
||||
static gint slow = 0;
|
||||
static gint skip = 0;
|
||||
static gboolean print_count = FALSE;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user