- More GCC warning removal, the most egregious of which was the potential

vulnerability "format not a string literal and no format arguments".
- Changed the CMake script to search for fmod libraries by full name instead
  of assuming a symbolic link has been placed for the latest version. It can
  also find a non-installed copy of FMOD if it is placed local to the ZDoom
  source tree.



SVN r1373 (trunk)
This commit is contained in:
Randy Heit 2009-01-28 05:29:41 +00:00
commit a3b11af15a
10 changed files with 67 additions and 18 deletions

View file

@ -482,7 +482,7 @@ CCMD (error)
if (argv.argc() > 1)
{
char *textcopy = copystring (argv[1]);
I_Error (textcopy);
I_Error ("%s", textcopy);
}
else
{
@ -495,7 +495,7 @@ CCMD (error_fatal)
if (argv.argc() > 1)
{
char *textcopy = copystring (argv[1]);
I_FatalError (textcopy);
I_FatalError ("%s", textcopy);
}
else
{