mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
Fixed: Compilation with GCC
This commit is contained in:
parent
853e110ac5
commit
898c87ebe1
1 changed files with 3 additions and 3 deletions
|
@ -280,7 +280,7 @@ public:
|
|||
{
|
||||
throw Exception("Could not open html: %s", filename.c_str());
|
||||
}
|
||||
fprintf( _File, ("<html><head>\n<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\n<title>" + title + "</title>\n</head><body>\n").c_str() );
|
||||
fprintf( _File, "<html><head>\n<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\n<title>%s</title>\n</head><body>\n", title.c_str() );
|
||||
}
|
||||
|
||||
///
|
||||
|
@ -289,7 +289,7 @@ public:
|
|||
if ( ! _Enabled )
|
||||
return;
|
||||
|
||||
fprintf( _File, htmlCode.c_str() );
|
||||
fprintf( _File, "%s", htmlCode.c_str() );
|
||||
}
|
||||
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue