Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-10-04 01:43:21 +0300
committerHans Goudey <h.goudey@me.com>2022-10-04 01:43:21 +0300
commitd42f882343c74afbc3e136d437887d0a39eedc3c (patch)
tree3fe6f4f3c0cbdaf07c21ab739d19fe2a3cdb9e89 /source/blender/bmesh
parent97746129d5870beedc40e3c035c7982ce8a6bebc (diff)
Cleanup: Fix sign conversion warning in BMesh log
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_log.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/bmesh/intern/bmesh_log.c b/source/blender/bmesh/intern/bmesh_log.c
index dcfe53605a6..a8a9390f525 100644
--- a/source/blender/bmesh/intern/bmesh_log.c
+++ b/source/blender/bmesh/intern/bmesh_log.c
@@ -1022,12 +1022,12 @@ void BM_log_print_entry(BMesh *bm, BMLogEntry *entry)
}
printf("v | added: %d, removed: %d, modified: %d\n",
- BLI_ghash_len(entry->added_verts),
- BLI_ghash_len(entry->deleted_verts),
- BLI_ghash_len(entry->modified_verts));
+ (int)BLI_ghash_len(entry->added_verts),
+ (int)BLI_ghash_len(entry->deleted_verts),
+ (int)BLI_ghash_len(entry->modified_verts));
printf("f | added: %d, removed: %d, modified: %d\n",
- BLI_ghash_len(entry->added_faces),
- BLI_ghash_len(entry->deleted_faces),
- BLI_ghash_len(entry->modified_faces));
+ (int)BLI_ghash_len(entry->added_faces),
+ (int)BLI_ghash_len(entry->deleted_faces),
+ (int)BLI_ghash_len(entry->modified_faces));
printf("}\n");
}