[Bf-blender-cvs] [002722bb800] master: Fix build error after previous commit

Hans Goudey noreply at git.blender.org
Sat Dec 19 00:09:36 CET 2020


Commit: 002722bb800e5b5d5d7e1c54e92e7d66037cb891
Author: Hans Goudey
Date:   Fri Dec 18 17:08:27 2020 -0600
Branches: master
https://developer.blender.org/rB002722bb800e5b5d5d7e1c54e92e7d66037cb891

Fix build error after previous commit

I tested building so many times while making this patch, but somehow
the previous commit was missing a padding variable, I have no idea how.

===================================================================

M	source/blender/makesdna/DNA_node_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 743850621bc..64dd489b850 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -263,6 +263,8 @@ typedef struct bNode {
   short custom1, custom2;
   float custom3, custom4;
 
+  char _pad1[4];
+
   /** Entire boundbox (worldspace). */
   rctf totr;
   /** Optional buttons area. */



More information about the Bf-blender-cvs mailing list