summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/rmodule.c
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2016-05-26 14:41:02 -0700
committerFurquan Shaikh <furquan@google.com>2016-05-28 08:48:45 +0200
commit161d2334e863b26fc893c6bbf8f8cb8b811ce586 (patch)
treecb88004bafdf0691e4cac9dfa599538b2b4bddbd /util/cbfstool/rmodule.c
parent559e947306d9a8684f7c0879c122a9b3b3f87c16 (diff)
downloadcoreboot-161d2334e863b26fc893c6bbf8f8cb8b811ce586.tar.gz
coreboot-161d2334e863b26fc893c6bbf8f8cb8b811ce586.tar.bz2
coreboot-161d2334e863b26fc893c6bbf8f8cb8b811ce586.zip
util/cbfstool: Include commonlib/helpers.h in common.h
This avoids re-declaring common macros like ARRAY_SIZE, MIN, MAX and ALIGN. Also removes the issues around including both files in any tool. Also, fix comparison error in various files by replacing int with size_t. Change-Id: I06c763e5dd1bec97e8335499468bbdb016eb28e5 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/14978 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util/cbfstool/rmodule.c')
-rw-r--r--util/cbfstool/rmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/rmodule.c b/util/cbfstool/rmodule.c
index da34eb5e0799..07957cb474bf 100644
--- a/util/cbfstool/rmodule.c
+++ b/util/cbfstool/rmodule.c
@@ -595,7 +595,7 @@ out:
int rmodule_init(struct rmod_context *ctx, const struct buffer *elfin)
{
struct parsed_elf *pelf;
- int i;
+ size_t i;
int ret;
ret = -1;