From 5154c9eb53bf23301ee07e70f37f89f03b11179f Mon Sep 17 00:00:00 2001 From: kevin Date: Wed, 20 Jan 2021 13:08:29 -0500 Subject: [PATCH] cwObject.cpp : Changed uses of printf() to use "%s" where no format was necessary to prevent compiler warnings. --- cwObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cwObject.cpp b/cwObject.cpp index 974c9bc..ee8a372 100644 --- a/cwObject.cpp +++ b/cwObject.cpp @@ -143,7 +143,7 @@ namespace cw void _objTypePrintIndent( const char* text, unsigned indent, const char* indentStr=" " ) { for(unsigned i=0; itype->print(o,c); - printf(eolStr); + printf("%s",eolStr); } void _objTypePrintNull( const object_t* o, print_ctx_t& c ) { printf("NULL "); }