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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-27 16:34:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 17:04:32 +0300
commit117bc1477e3c280587b6a484cf739b93e51db612 (patch)
treec8345181d9da2bfeb68c2af35e879edb5cf289b6 /source/blender/blenkernel/intern/ipo.c
parent87066782e720257bef19450f0e3f7c739101b9b8 (diff)
Cleanup: remove redundant property assignment
Also cleanup comments
Diffstat (limited to 'source/blender/blenkernel/intern/ipo.c')
-rw-r--r--source/blender/blenkernel/intern/ipo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/ipo.c b/source/blender/blenkernel/intern/ipo.c
index 356271d82bd..cccbb4aefe4 100644
--- a/source/blender/blenkernel/intern/ipo.c
+++ b/source/blender/blenkernel/intern/ipo.c
@@ -610,7 +610,7 @@ static const char *camera_adrcodes_to_paths(int adrcode, int *array_index)
return "shift_y";
}
- /* unrecognised adrcode, or not-yet-handled ones! */
+ /* unrecognized adrcode, or not-yet-handled ones! */
return NULL;
}
@@ -652,7 +652,7 @@ static const char *light_adrcodes_to_paths(int adrcode, int *array_index)
return mtex_adrcodes_to_paths(adrcode, array_index);
}
- /* unrecognised adrcode, or not-yet-handled ones! */
+ /* unrecognized adrcode, or not-yet-handled ones! */
return NULL;
}
@@ -677,7 +677,7 @@ static const char *sound_adrcodes_to_paths(int adrcode, int *array_index)
return "attenuation";
}
- /* unrecognised adrcode, or not-yet-handled ones! */
+ /* unrecognized adrcode, or not-yet-handled ones! */
return NULL;
}