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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-04-29 16:37:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-29 16:37:44 +0400
commitc034a252bb08be3879ee14e7c0db2204e03d4817 (patch)
tree1590159203ee0c5e144ef1918a8c221c6b2cc52c /source
parent1dcf95684929806e80e3d0b514c8690cd757b1bd (diff)
Code cleanup: quiet warnings
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/node_relationships.c2
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_node/node_relationships.c b/source/blender/editors/space_node/node_relationships.c
index e8c4f7fb2ad..54cde7fb00a 100644
--- a/source/blender/editors/space_node/node_relationships.c
+++ b/source/blender/editors/space_node/node_relationships.c
@@ -404,7 +404,7 @@ static void node_link_update_header(bContext *C, bNodeLinkDrag *UNUSED(nldrag))
#define HEADER_LENGTH 256
char header[HEADER_LENGTH];
- BLI_snprintf(header, HEADER_LENGTH, IFACE_("LMB: drag node link, RMB: cancel"));
+ BLI_strncpy(header, IFACE_("LMB: drag node link, RMB: cancel"), HEADER_LENGTH);
ED_area_headerprint(CTX_wm_area(C), header);
#undef HEADER_LENGTH
}
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index baadd4dde29..6129bb869f5 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -1251,7 +1251,7 @@ static bool matrix_invert_args_check(const MatrixObject *self, PyObject *args, b
return true;
case 1:
if (check_type) {
- const MatrixObject *fallback = PyTuple_GET_ITEM(args, 0);
+ const MatrixObject *fallback = (MatrixObject *)PyTuple_GET_ITEM(args, 0);
if (!MatrixObject_Check(fallback)) {
PyErr_SetString(PyExc_TypeError,
"Matrix.invert: "
@@ -1314,7 +1314,7 @@ static PyObject *Matrix_invert(MatrixObject *self, PyObject *args)
}
else {
if (PyTuple_GET_SIZE(args) == 1) {
- MatrixObject *fallback = PyTuple_GET_ITEM(args, 0);
+ MatrixObject *fallback = (MatrixObject *)PyTuple_GET_ITEM(args, 0);
if (BaseMath_ReadCallback(fallback) == -1)
return NULL;