Skip to content
Snippets Groups Projects
Commit 944ac41e authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

WRG: try to fix wrg (format not a string literal and no format arguments)

parent 7516ec3f
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,7 @@ ApplicationHtmlDocGenerator::GenerateDoc(const Application::Pointer app, const s ...@@ -143,7 +143,7 @@ ApplicationHtmlDocGenerator::GenerateDoc(const Application::Pointer app, const s
fprintf(stderr, "Error, can't open file"); fprintf(stderr, "Error, can't open file");
itkGenericExceptionMacro( << "Error, can't open file "<<filename<<"."); itkGenericExceptionMacro( << "Error, can't open file "<<filename<<".");
} }
fprintf(file, doc.c_str()); fprintf(file, "%s", doc.c_str());
fclose(file); fclose(file);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment