1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/games/hllib/files/patch-HLLib-HLLib.cpp
Felippe de Meirelles Motta 13f09390a9 - Update to 2.4.4
- Pass maintainership to submitter
- Make CLANG happy

PR:		ports/176040
Submitted by:	Danilo Egea Gondolfo <danilogondolfo@gmail.com>
2013-02-14 22:04:06 +00:00

32 lines
607 B
C++

--- ../orig/HLLib/HLLib.cpp 2010-11-01 19:45:14.000000000 -0200
+++ ./HLLib/HLLib.cpp 2013-02-11 17:56:51.284213443 -0200
@@ -153,6 +153,8 @@
case HL_PACKAGE_BOUND:
*pValue = pPackage != 0;
return hlTrue;
+ default:
+ ;
}
return hlFalse;
@@ -171,6 +173,8 @@
case HL_FORCE_DEFRAGMENT:
bForceDefragment = bValue;
break;
+ default:
+ ;
}
}
@@ -533,6 +537,8 @@
case HL_PROC_DEFRAGMENT_PROGRESS_EX:
pDefragmentProgressExProc = (PDefragmentProgressExProc)pValue;
break;
+ default:
+ ;
}
}
Only in ./HLLib: HLLib.cpp.orig
diff -ru ../orig/HLLib/Makefile ./HLLib/Makefile