From c5507b872896efb336e294aeaa4285c7137cef8d Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 3 Jan 2018 14:52:26 +0100 Subject: [PATCH] Changed: Display string length in message (to debug empty strings) --HG-- branch : develop --- .../tools/3d/plugin_max/nel_mesh_lib/export_radial_normal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/tools/3d/plugin_max/nel_mesh_lib/export_radial_normal.cpp b/code/nel/tools/3d/plugin_max/nel_mesh_lib/export_radial_normal.cpp index d839017fc..80f57bfb4 100644 --- a/code/nel/tools/3d/plugin_max/nel_mesh_lib/export_radial_normal.cpp +++ b/code/nel/tools/3d/plugin_max/nel_mesh_lib/export_radial_normal.cpp @@ -79,7 +79,7 @@ void CRadialVertices::init (INode *node, Mesh *mesh, TimeValue time, Interface & { // Output error message char msg[512]; - smprintf (msg, 512, "Can't find pivot node named '%s'", pivotName.c_str()); + smprintf (msg, 512, "Can't find pivot node named '%s' of length %u", pivotName.c_str(), (uint)pivotName.length()); nelExport.outputErrorMessage (msg); } }