From a606684e3460785ec4f15afa92fb7441f41c26ac Mon Sep 17 00:00:00 2001 From: kaetemi Date: Fri, 17 Apr 2020 08:37:25 +0800 Subject: [PATCH] Use nel type --- ryzom/client/src/r2/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryzom/client/src/r2/editor.cpp b/ryzom/client/src/r2/editor.cpp index fa98d3c3b..0424d5f9d 100644 --- a/ryzom/client/src/r2/editor.cpp +++ b/ryzom/client/src/r2/editor.cpp @@ -7809,7 +7809,7 @@ NLMISC_COMMAND(saveScenarioRtData, "save scenario RtData to file", "") pRtData->serialize(ss); //std::string str = ss.str(); // output.serial(ss); - output.serialBuffer((uint8_t *)ss.c_str(), ss.length()); + output.serialBuffer((uint8 *)ss.c_str(), ss.length()); output.flush(); output.close(); }