sna: Fix include guard
./xassert.h:24:9: warning: '__XASSERT_H___' is used as a header guard
here, followed by #define of a different macro [-Wheader-guard]
^~~~~~~~~~~~~~
./xassert.h:25:9: note: '__XASSERT_H__' is defined here; did you mean
'__XASSERT_H___'?
^~~~~~~~~~~~~
__XASSERT_H___
Reported-by: Zdenek Kabelac <zkabelac@redhat.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
7548f77fff
commit
f0d5dbe9bf
|
|
@ -21,7 +21,7 @@
|
|||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef __XASSERT_H___
|
||||
#ifndef __XASSERT_H__
|
||||
#define __XASSERT_H__
|
||||
|
||||
/* Rewrap the traditional assert so that we can capture the error message
|
||||
|
|
|
|||
Loading…
Reference in New Issue