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;