led_tm1637: minor, put spaces around operators

This commit is contained in:
King Kévin 2020-02-17 14:27:16 +01:00
parent 2896185e45
commit e88177d785
1 changed files with 12 additions and 12 deletions

View File

@ -199,7 +199,7 @@ static inline void led_tm1637_tick(void)
static bool led_tm1637_write(const uint8_t* data, size_t length)
{
bool to_return = true; // return if write succeeded
if (data==NULL || length==0) { // verify there it data to be read
if (NULL == data || 0 == length) { // verify there it data to be read
return false;
}