1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/games/hangman/files/patch-src-sound.c
Dmitry Marakasov daffe00d4a - Trim Makefile headers
- Drop ABI versions from LIB_DEPENDS
- OptionsNG
- Pet portlint
- Switch to dynamic plist where useful
- Canonicalize patch names
- Fix DOS line endings in patch files
2013-07-12 15:01:45 +00:00

17 lines
343 B
C

--- src/sound.c.orig Sun Apr 11 01:27:01 2004
+++ src/sound.c Thu Nov 10 05:14:05 2005
@@ -47,10 +47,12 @@
{
Mix_Chunk * temp = NULL;
char * newname = NULL;
+ int len1, len2;
assert(name);
- int len1 = strlen(sg_data_path), len2 = strlen(name);
+ len1 = strlen(sg_data_path);
+ len2 = strlen(name);
if(disabled)
return NULL;