From c6f64d46ededba44bff48e18db5a2bbb2cb3d27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 3 Aug 2021 12:44:16 +0200 Subject: [PATCH] Cleanup: USD importer, consistent naming of function parameter Rename function parameter `flags` to `read_flag` in the declaration, to be consistent with the definition. No functional changes. --- source/blender/io/usd/usd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/io/usd/usd.h b/source/blender/io/usd/usd.h index 7a2d1b58c4d..6b6b2d37162 100644 --- a/source/blender/io/usd/usd.h +++ b/source/blender/io/usd/usd.h @@ -108,7 +108,7 @@ struct Mesh *USD_read_mesh(struct CacheReader *reader, struct Mesh *existing_mesh, const float time, const char **err_str, - int flags); + int read_flag); bool USD_mesh_topology_changed(struct CacheReader *reader, struct Object *ob,