Commit a021dea1 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

corrected printing

parent 25399dfc
......@@ -872,7 +872,7 @@ int framePointersXML(struct file_set *fset)
printf("Content-Type: text/xml\r\n");
printf("Pragma: no-cache\r\n");
printf("\r\n");
printf(s);
printf("%s",s);
munmap(frameParsAll, sizeof(struct framepars_all_t));
close(fset->framepars_dev_fd);
......@@ -924,7 +924,7 @@ void errorMsgXML(char * msg)
printf("Content-Type: text/xml\r\n");
printf("Pragma: no-cache\r\n");
printf("\r\n");
printf(s);
printf("%s",s);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment