1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/games/hllib/files/patch-HLLib-Error.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

13 lines
414 B
C++

--- ../orig/HLLib/Error.cpp 2010-04-17 13:48:52.000000000 -0300
+++ ./HLLib/Error.cpp 2013-02-11 18:00:09.931600402 -0200
@@ -139,7 +139,7 @@
hlUInt uiLength = (hlUInt)strlen(this->lpSystemError);
- while(uiLength >= 0 && isspace(this->lpSystemError[uiLength - 1]))
+ while(isspace(this->lpSystemError[uiLength - 1]))
{
uiLength--;
}
diff -ru ../orig/HLLib/FileStream.cpp ./HLLib/FileStream.cpp