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:
authorJacques Lucke <jacques@blender.org>2021-09-18 14:35:05 +0300
committerJacques Lucke <jacques@blender.org>2021-09-18 14:35:05 +0300
commit136e357d8dd541eeabc3f77dce8079d807bce8b4 (patch)
treef32008e816bfc198de1e0e29e1c995bcbf0b01de /source/blender/makesdna/intern
parenta229a9dd64821575b27e6e6e317a1ce97e23f6d7 (diff)
Cleanup: typo
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/makesdna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 0b7848b6662..9957808b63d 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -1134,7 +1134,7 @@ static int calculate_struct_sizes(int firststruct, FILE *file_verify, const char
* to the struct to resolve the problem. */
if ((size_64 % max_align_64 == 0) && (size_32 % max_align_32 == 4)) {
fprintf(stderr,
- "Sizeerror in 32 bit struct: %s (add paddding pointer)\n",
+ "Sizeerror in 32 bit struct: %s (add padding pointer)\n",
types[structtype]);
}
else {