Pre-emptive fix for Mac (and possibly some ports) build bustage - if you're going to use a variable to contain a debug output file name it helps if the variable is declared on all platforms the code compiles for.

This commit is contained in:
sdagley%netscape.com 1999-10-25 00:29:15 +00:00
Родитель ae0ced2411
Коммит acee1b3247
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -505,6 +505,9 @@ void nsXIFConverter::WriteDebugFile() {
#elif defined(XP_MAC)
// XXX Someone please write some Mac debugging code here!
const char* filename="xif.xif";
#else
const char* filename="xif.xif";
#endif