diff options
author | Paul Selkirk <paul@psgd.org> | 2017-10-23 18:05:31 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2017-10-23 18:05:31 -0400 |
commit | ca84af553cbaae45b17cce04d457b2e61cc4277c (patch) | |
tree | 90f2bc5e96d2f1ae3fece3dfb9075edda08c4ace /utils | |
parent | 12a3c63b75044b207dd7982ce3ed170231bd4467 (diff) |
Cleanup signed/unsigned mismatches, mostly in loop counters
Diffstat (limited to 'utils')
-rw-r--r-- | utils/cores.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/cores.c b/utils/cores.c index b055dea..1126e85 100644 --- a/utils/cores.c +++ b/utils/cores.c @@ -42,7 +42,7 @@ #include <hal.h> #include <verilog_constants.h> -int main(int argc, char *argv[]) +int main(void) { hal_core_t *core; const hal_core_info_t *info; |