From 9f0f86150e9bf14760e155768dcb7df682257327 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Mon, 18 Apr 2016 17:05:12 +1000 Subject: Fix sparse warnings Fix some sparse warnings by using NULL instead of 0 and static-ifying a variable not used outside its file. Signed-off-by: Andrew Donnellan Signed-off-by: Samuel Mendoza-Jonas --- ui/twin/pbt-scr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/twin/pbt-scr.c') diff --git a/ui/twin/pbt-scr.c b/ui/twin/pbt-scr.c index b774f19..e10cab1 100644 --- a/ui/twin/pbt-scr.c +++ b/ui/twin/pbt-scr.c @@ -402,8 +402,8 @@ struct pbt_scr *pbt_scr_init(void *talloc_ctx, #if !defined(HAVE_LIBTWIN_TWIN_X11_H) assert(0); #else - scr->twin_ctx.x11 = twin_x11_create_ext(XOpenDisplay(0), width, - height, 0); + scr->twin_ctx.x11 = twin_x11_create_ext(XOpenDisplay(NULL), + width, height, 0); if (!scr->twin_ctx.x11) { pb_log("%s: twin_x11_create_ext failed.\n", __func__); -- cgit v1.2.1