summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEvan Lojewski <github@meklort.com>2020-10-24 09:49:47 -0600
committerGitHub <noreply@github.com>2020-10-24 09:49:47 -0600
commitbab7752469903fb4e93e31f8f53f7fd44e39b51f (patch)
treeb122c1b93175a6e505179f712bdbf570a1c4c576 /include
parent767b28537a01c8dd0171a8f8fc2f817104028366 (diff)
downloadbcm5719-ortega-bab7752469903fb4e93e31f8f53f7fd44e39b51f.tar.gz
bcm5719-ortega-bab7752469903fb4e93e31f8f53f7fd44e39b51f.zip
ape: Cleanup various linting warnings. (#149)
Diffstat (limited to 'include')
-rw-r--r--include/types.h2
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__)
OpenPOWER on IntegriCloud