diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-08-28 04:09:52 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-08-28 04:09:52 +0000 |
commit | c637b4560ee8b683de5fbd2ae8b3af5bd254b0c5 (patch) | |
tree | a91ccbb45126300bcb40db99d49a94a7e819902d /games/scramble/files/patch-src-sound.c | |
parent | bsd.port.options.mk, needs to be placed before bsd.port.pre.mk. (diff) |
- Fix build with clang
- Remove unneeded patches
Diffstat (limited to 'games/scramble/files/patch-src-sound.c')
-rw-r--r-- | games/scramble/files/patch-src-sound.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/games/scramble/files/patch-src-sound.c b/games/scramble/files/patch-src-sound.c deleted file mode 100644 index 357a0e863300..000000000000 --- a/games/scramble/files/patch-src-sound.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/sound.c.orig Thu Nov 10 05:24:37 2005 -+++ src/sound.c Thu Nov 10 05:22:26 2005 -@@ -46,12 +46,13 @@ - Mix_Chunk * loadSound(const char * name) - { - Mix_Chunk * temp; -+ char * newname; - int len1 = strlen(sg_data_path), len2 = strlen(name); - - if(disabled) - return NULL; - -- char * newname = (char*)malloc(len1 + len2 + 1); -+ newname = (char*)malloc(len1 + len2 + 1); - if(newname == NULL) { - fprintf(stderr, "Out of memory!\n"); - exit(1); |