mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
32ed1b6782
- update to ftrack-3.1 PR: 75926 Submitted by: forsite@spamtest.ru
12 lines
277 B
C++
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;
|