--- tuxnes-0.75/emu.c.orig 2001-04-12 01:45:47 +0400 +++ tuxnes-0.75/emu.c 2005-02-02 21:03:22 +0300 @@ -890,7 +890,7 @@ len = strlen(palfile) + 1; if (! (buffer = malloc(len))) { - perror (__FUNCTION__ ": malloc"); + perror ("loadpal 893: malloc"); return; } memcpy (buffer, palfile, len); @@ -912,7 +912,7 @@ len = strlen(filename) + 1; if (! (buffer = malloc(len))) { - perror (__FUNCTION__ ": malloc"); + perror ("loadpal 915: malloc"); return; } memcpy (buffer, filename, len); @@ -924,7 +924,7 @@ return; if (!(palfile = malloc ((len = strlen (filename)) + 11))) { - perror (__FUNCTION__ ": malloc"); + perror ("loadpal 927: malloc"); return; } strcpy (palfile, filename); @@ -1602,7 +1602,7 @@ if (! (basefilename = malloc(baseend - basestart + 1))) { - perror (__FUNCTION__ ": malloc"); + perror ("main 1605: malloc"); exit (1); }