diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2010-08-22 18:11:59 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2010-08-22 18:11:59 (GMT) |
commit | 23f56d108fa9ac1c5cfdbf67de11e123e0c99d13 (patch) | |
tree | 89f457bd6132c81ed1950c3a97c3285ef1caf758 /src | |
parent | 442c651d64c861a55665ad8dbd6a19a9c340c2ee (diff) | |
download | fluxbox-23f56d108fa9ac1c5cfdbf67de11e123e0c99d13.zip fluxbox-23f56d108fa9ac1c5cfdbf67de11e123e0c99d13.tar.bz2 |
bugfix: compiler warning
Diffstat (limited to 'src')
-rw-r--r-- | src/Screen.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 44649c0..eab0f59 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -2041,7 +2041,7 @@ int BScreen::getHead(const FbTk::FbWindow &win) const { | |||
2041 | 2041 | ||
2042 | int head = 0; // whole screen | 2042 | int head = 0; // whole screen |
2043 | 2043 | ||
2044 | #if XINERAMA | 2044 | #ifdef XINERAMA |
2045 | if (hasXinerama()) { | 2045 | if (hasXinerama()) { |
2046 | 2046 | ||
2047 | // cast needed to prevent win.x() become "unsigned int" which is bad | 2047 | // cast needed to prevent win.x() become "unsigned int" which is bad |