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-22 15:16:36 -0800 |
commit | 9ec1c29d75e5795557bf209dc690aed18b503545 (patch) | |
tree | 4580064fd0ec38fa9675276451b0f218ed306ff2 | |
parent | af520d671089dbf96271bc97484113ea2f18113e (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>
(cherry picked from commit 2e3ebec9520719a8e5c3c92390e83bcb5216f978)
-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" |