diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-02-03 18:48:06 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-02-10 18:43:51 +0000 |
commit | 191dc29c7d05d8af9aa2c659275436ec4c4495c0 (patch) | |
tree | bbe78f8d74e0cbdb3977c3991530fef7ce982bf7 | |
parent | b43a012824af0165f3716c7986888213420885aa (diff) |
main: Avoid warning on un-initialized display
Bug-AGL: SPEC-3150
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Idda7b48313d05aa520a43a9af3db3a4be1710d9d
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1105,7 +1105,7 @@ ivi_compositor_get_quirks(struct ivi_compositor *ivi) int main(int argc, char *argv[]) { struct ivi_compositor ivi = { 0 }; - struct wl_display *display; + struct wl_display *display = NULL; struct wl_event_loop *loop; struct wl_event_source *signals[3] = { 0 }; struct weston_config_section *section; |