From 611889bc2a3aaa314719d7ed0ebf37b9fd741721 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Mon, 30 Jan 2023 20:12:01 -0600 Subject: [PATCH] nil: Fix include guards in nil_image.h Part-of: --- src/nouveau/nil/nil_image.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nouveau/nil/nil_image.h b/src/nouveau/nil/nil_image.h index 76d27c8..1706bfa 100644 --- a/src/nouveau/nil/nil_image.h +++ b/src/nouveau/nil/nil_image.h @@ -1,5 +1,5 @@ -#ifndef NIL_H -#define NIL_H +#ifndef NIL_IMAGE_H +#define NIL_IMAGE_H #include #include @@ -176,4 +176,4 @@ void nil_buffer_fill_tic(struct nouveau_ws_device *dev, uint32_t num_elements, void *desc_out); -#endif /* NIL_H */ +#endif /* NIL_IMAGE_H */ -- 2.7.4