diff options
author | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2013-12-29 12:31:23 -0800 |
---|---|---|
committer | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2014-01-12 23:12:48 -0800 |
commit | 2e3ebec9520719a8e5c3c92390e83bcb5216f978 (patch) | |
tree | 3a5805c4fb0dfb82abfdcb317b3a3071ca84dae8 /hw/xquartz/darwinfb.h | |
parent | 9da6c0918f40359f28fe8889d5b7cae7efcc8377 (diff) |
XQuartz: Fix darwinfb.h header guard
./darwinfb.h:28:9: warning: '_DARWIN_FB_H' is used as a header guard here, followed by #define of a different macro
[-Wheader-guard,Lexical or Preprocessor Issue]
^~~~~~~~~~~~
./darwinfb.h:29:9: note: '_DARWIN_DB_H' is defined here; did you mean '_DARWIN_FB_H'? [Lexical or Preprocessor Issue]
^~~~~~~~~~~~
_DARWIN_FB_H
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Diffstat (limited to 'hw/xquartz/darwinfb.h')
-rw-r--r-- | hw/xquartz/darwinfb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/darwinfb.h b/hw/xquartz/darwinfb.h index 5de360d75..541128b8e 100644 --- a/hw/xquartz/darwinfb.h +++ b/hw/xquartz/darwinfb.h @@ -26,7 +26,7 @@ */ #ifndef _DARWIN_FB_H -#define _DARWIN_DB_H +#define _DARWIN_FB_H #include "scrnintstr.h" |