1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/mail/ftrack/files/patch-src::ustr.cpp
Yen-Ming Lee 32ed1b6782 - assign new MAINTAINER
- update to ftrack-3.1

PR:		75926
Submitted by:	forsite@spamtest.ru
2005-01-08 15:08:19 +00:00

12 lines
277 B
C++

--- src/ustr.cpp.orig Thu Jan 6 13:21:40 2005
+++ src/ustr.cpp Thu Jan 6 13:20:44 2005
@@ -297,7 +297,7 @@
}
Str &Str::Upper(void) {
- for (int i = 0; i < Len; i++) {
+ for (unsigned int i = 0; i < Len; i++) {
Ptr[i] = toupper(Ptr[i]);
}
return *this;