minor white space diff.

This commit is contained in:
Rohit Grover 2015-01-09 10:44:09 +00:00
parent c9a39ef3ea
commit 1c1dad30d9

View file

@ -214,14 +214,12 @@ ble_error_t nRF51GattServer::updateValue(uint16_t charHandle, uint8_t buffer[],
BLE_ERROR_PARAM_OUT_OF_RANGE );
}
/* Notifications consume application buffers. The return value can
/* Notifications consume application buffers. The return value can
be used for resending notifications.
*/
if (error != ERROR_NONE)
{
if (error != ERROR_NONE) {
returnValue = BLE_STACK_BUSY;
}
} else {
ASSERT_INT( ERROR_NONE,
sd_ble_gatts_value_set(nrfCharacteristicHandles[charHandle].value_handle, 0, &len, buffer),