Cleanup: Use proper type for original ID pointer

Helps debugging, no need to cast in a debugger.
This commit is contained in:
Sergey Sharybin 2018-06-04 14:11:38 +02:00
parent acb5bbf9b2
commit 736a84ec66
Notes: blender-bot 2023-10-13 01:54:23 +02:00
Referenced by issue #55320, Sculpt Mode - Dyntopo visual bug
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ typedef struct ID {
/* Only set for datablocks which are coming from copy-on-write, points to
* the original version of it.
*/
void *orig_id;
struct ID *orig_id;
void *py_instance;
} ID;