summaryrefslogtreecommitdiff
path: root/src/coredump
diff options
context:
space:
mode:
authorkasperk81 <83082615+kasperk81@users.noreply.github.com>2022-10-15 21:24:11 +0000
committerStephen M. Webb <stephen.webb@bregmasoft.ca>2022-10-21 12:08:18 -0400
commitfbaa4d5b0c47a4129ff7e514bdecc284635b36e9 (patch)
treeb8957c0651723ad989af9418c68b0e6c6b5bdc17 /src/coredump
parent47aef9392723e4816d94d4efda4248180aece7f5 (diff)
downloadlibunwind-fbaa4d5b0c47a4129ff7e514bdecc284635b36e9.tar.gz
fix more warnings
Diffstat (limited to 'src/coredump')
-rw-r--r--src/coredump/ucd_file_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coredump/ucd_file_table.c b/src/coredump/ucd_file_table.c
index 15e07047..cde693db 100644
--- a/src/coredump/ucd_file_table.c
+++ b/src/coredump/ucd_file_table.c
@@ -189,7 +189,7 @@ ucd_file_table_dispose (ucd_file_table_t *ucd_file_table)
{
if (ucd_file_table->uft_files != NULL)
{
- for (int i = 0; i < ucd_file_table->uft_count; ++i)
+ for (size_t i = 0; i < ucd_file_table->uft_count; ++i)
{
ucd_file_dispose(&ucd_file_table->uft_files[i]);
}