summaryrefslogtreecommitdiffstats
path: root/games/tuxnes/emu.c.patch
diff options
context:
space:
mode:
author Kyle Guinn <elyk03@gmail.com>2010-05-11 20:00:34 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-11 20:00:34 +0200
commit8f315ce5242a2da9eb89dd774efe5c9c092ed92c (patch)
tree77f292684223e06b19ce5d24cc467c80cd47e6b2 /games/tuxnes/emu.c.patch
parent736127208b974ffc401c7b6d74e59dd3c4068751 (diff)
downloadslackbuilds-8f315ce5242a2da9eb89dd774efe5c9c092ed92c.tar.gz
slackbuilds-8f315ce5242a2da9eb89dd774efe5c9c092ed92c.tar.xz
games/tuxnes: Added to 12.0 repository
Diffstat (limited to 'games/tuxnes/emu.c.patch')
-rw-r--r--games/tuxnes/emu.c.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/games/tuxnes/emu.c.patch b/games/tuxnes/emu.c.patch
new file mode 100644
index 0000000000..0b33a7190c
--- /dev/null
+++ b/games/tuxnes/emu.c.patch
@@ -0,0 +1,38 @@
+--- 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);
+ }
+