diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-11-10 14:52:54 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-11-10 14:59:47 -0800 |
commit | 55742ee26d6001097ec4ea8f369250215beb229b (patch) | |
tree | d87fdcec52f602fe39ce6fecd37392dc3880c043 | |
parent | 0b9c0acd1c871eaf301ad1119493043ef632a996 (diff) |
Clears up 9 warnings from clang 13 of the form:
globals.c:34:16: warning: no previous extern declaration for non-static
variable 'resources' [-Wmissing-variable-declarations]
Xman_Resources resources; /* Resource manager sets these. */
^
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xman/-/merge_requests/13>
-rw-r--r-- | globals.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ from the X Consortium. */ -#include "man.h" +#include "globals.h" Xman_Resources resources; /* Resource manager sets these. */ |