mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
38 lines
989 B
Diff
38 lines
989 B
Diff
--- emu.c~ 2007-06-30 02:02:34.000000000 -0500
|
|
+++ emu.c 2007-06-30 02:04:48.000000000 -0500
|
|
@@ -890,7 +890,7 @@
|
|
len = strlen(palfile) + 1;
|
|
if (! (buffer = malloc(len)))
|
|
{
|
|
- perror (__FUNCTION__ ": malloc");
|
|
+ perror ("loadpal: malloc");
|
|
return;
|
|
}
|
|
memcpy (buffer, palfile, len);
|
|
@@ -912,7 +912,7 @@
|
|
len = strlen(filename) + 1;
|
|
if (! (buffer = malloc(len)))
|
|
{
|
|
- perror (__FUNCTION__ ": malloc");
|
|
+ perror ("loadpal: malloc");
|
|
return;
|
|
}
|
|
memcpy (buffer, filename, len);
|
|
@@ -924,7 +924,7 @@
|
|
return;
|
|
if (!(palfile = malloc ((len = strlen (filename)) + 11)))
|
|
{
|
|
- perror (__FUNCTION__ ": malloc");
|
|
+ perror ("loadpal: malloc");
|
|
return;
|
|
}
|
|
strcpy (palfile, filename);
|
|
@@ -1602,7 +1602,7 @@
|
|
|
|
if (! (basefilename = malloc(baseend - basestart + 1)))
|
|
{
|
|
- perror (__FUNCTION__ ": malloc");
|
|
+ perror ("main: malloc");
|
|
exit (1);
|
|
}
|
|
|