From 85e1e2f4d6c00d62503ad94c1ee504a9dd659b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 10 Apr 2008 18:05:00 +0000 Subject: [PATCH] Coding style :P git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24892 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/device/USBDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/device/USBDevice.cpp b/src/kits/device/USBDevice.cpp index 79e618bfc3..9eab50e5a2 100644 --- a/src/kits/device/USBDevice.cpp +++ b/src/kits/device/USBDevice.cpp @@ -49,7 +49,7 @@ BUSBDevice::SetTo(const char *path) return B_BAD_VALUE; fPath = strdup(path); - fRawFD = open(path, O_RDWR|O_CLOEXEC); + fRawFD = open(path, O_RDWR | O_CLOEXEC); if (fRawFD < 0) { Unset(); return B_ERROR;