mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 17:41:54 +00:00
Merge pull request #1045 from sandrine-bailleux-arm/sb/xlat-lib-ctx
Fix sign of variable in xlat_tables_print()
This commit is contained in:
@@ -1123,7 +1123,7 @@ void xlat_tables_print(xlat_ctx_t *ctx)
|
||||
int used_page_tables;
|
||||
#if PLAT_XLAT_TABLES_DYNAMIC
|
||||
used_page_tables = 0;
|
||||
for (int i = 0; i < ctx->tables_num; ++i) {
|
||||
for (unsigned int i = 0; i < ctx->tables_num; ++i) {
|
||||
if (ctx->tables_mapped_regions[i] != 0)
|
||||
++used_page_tables;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user