瀏覽代碼

Merge pull request #3642 from assimp/fix_gcc_compiler_warning

Fix compiler warning: warning: argument to ... call is the same expre…
Kim Kulling 4 年之前
父節點
當前提交
afbe8fb436
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      test/unit/utBlenderIntermediate.cpp

+ 2 - 2
test/unit/utBlenderIntermediate.cpp

@@ -63,8 +63,8 @@ class BlenderIntermediateTest : public ::testing::Test {
 // The C++ standard defines and expects this behavior: true if lhs < rhs, false otherwise.
 TEST_F(BlenderIntermediateTest, ConversionData_ObjectCompareTest) {
     Object obj1, obj2;
-    strncpy(obj1.id.name, NAME_1, sizeof(NAME_1));
-    strncpy(obj2.id.name, NAME_2, sizeof(NAME_2));
+    strncpy(obj1.id.name, NAME_1, sizeof(obj1.id.name));
+    strncpy(obj2.id.name, NAME_2, sizeof(obj2.id.name));
 
     Blender::ObjectCompare cmp_true_because_first_is_smaller_than_second;
     bool res(cmp_true_because_first_is_smaller_than_second(&obj1, &obj2));