Fix style violation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31161 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent
2009-06-21 19:34:15 +00:00
parent faafd00c1a
commit 926b6fdb08
+2 -2
View File
@@ -147,8 +147,8 @@ KeyboardFilter::Filter(BMessage* message, EventTarget** _target,
&& message->FindInt32("key", &key) == B_OK
&& message->FindInt32("modifiers", &modifiers) == B_OK) {
// Check for safe video mode (cmd + ctrl + escape)
if (key == 0x01 && (modifiers & B_COMMAND_KEY) != 0 &&
(modifiers & B_CONTROL_KEY) != 0) {
if (key == 0x01 && (modifiers & B_COMMAND_KEY) != 0
&& (modifiers & B_CONTROL_KEY) != 0) {
system("screenmode --fall-back &");
return B_SKIP_MESSAGE;
}