diff options
| author | Evan Lojewski <github@meklort.com> | 2020-10-24 09:49:47 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-24 09:49:47 -0600 |
| commit | bab7752469903fb4e93e31f8f53f7fd44e39b51f (patch) | |
| tree | b122c1b93175a6e505179f712bdbf570a1c4c576 /include | |
| parent | 767b28537a01c8dd0171a8f8fc2f817104028366 (diff) | |
| download | bcm5719-ortega-bab7752469903fb4e93e31f8f53f7fd44e39b51f.tar.gz bcm5719-ortega-bab7752469903fb4e93e31f8f53f7fd44e39b51f.zip | |
ape: Cleanup various linting warnings. (#149)
Diffstat (limited to 'include')
| -rw-r--r-- | include/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/types.h b/include/types.h index 5f0fce0..89e0ee3 100644 --- a/include/types.h +++ b/include/types.h @@ -75,7 +75,7 @@ typedef uint32_t size_t; #define ARRAY_ELEMENTS(__array__) (sizeof(__array__) / sizeof(__array__[0])) -#define DIVIDE_RND_UP(__value__, __round__) (((__value__) + (__round__)-1) / (__round__)) +#define DIVIDE_RND_UP(__value__, __round__) (((__value__) + (__round__) - 1) / (__round__)) #define DIVIDE_RND_DOWN(__value__, __round__) ((__value__) / (__round__)) #define MIN(__x__, __y__) ((__x__) < (__y__)) ? (__x__) : (__y__) |

