From: John Keeping Date: Sun, 8 Mar 2015 16:32:24 +0000 (+0000) Subject: ui-shared: avoid initializing static variable to zero X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/94e5f212f55d3f4dd6ce83edb6db823de7eb8cc7?ds=inline;hp=94e5f212f55d3f4dd6ce83edb6db823de7eb8cc7 ui-shared: avoid initializing static variable to zero Sparse complains that we are using a plain integer as a NULL pointer here, but in fact we do not have to specify a value for this variable at all since it has static storage duration and thus will be initialized to NULL by the compiler. Signed-off-by: John Keeping ---