mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1015 B

  1. --- ./emu.c.orig 2004-09-13 02:50:10.642433736 +0200
  2. +++ ./emu.c 2004-09-13 02:52:00.656709024 +0200
  3. @@ -890,7 +890,7 @@
  4. len = strlen(palfile) + 1;
  5. if (! (buffer = malloc(len)))
  6. {
  7. - perror (__FUNCTION__ ": malloc");
  8. + perror ("loadpal 893: malloc");
  9. return;
  10. }
  11. memcpy (buffer, palfile, len);
  12. @@ -912,7 +912,7 @@
  13. len = strlen(filename) + 1;
  14. if (! (buffer = malloc(len)))
  15. {
  16. - perror (__FUNCTION__ ": malloc");
  17. + perror ("loadpal 915: malloc");
  18. return;
  19. }
  20. memcpy (buffer, filename, len);
  21. @@ -924,7 +924,7 @@
  22. return;
  23. if (!(palfile = malloc ((len = strlen (filename)) + 11)))
  24. {
  25. - perror (__FUNCTION__ ": malloc");
  26. + perror ("loadpal 927 : malloc");
  27. return;
  28. }
  29. strcpy (palfile, filename);
  30. @@ -1602,7 +1602,7 @@
  31. if (! (basefilename = malloc(baseend - basestart + 1)))
  32. {
  33. - perror (__FUNCTION__ ": malloc");
  34. + perror ("main 1605: malloc");
  35. exit (1);
  36. }