signed to unsigned
fluxgen fluxgen
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
src/StringUtil.cc
→
src/StringUtil.cc
@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: StringUtil.cc,v 1.12 2002/09/15 09:40:51 fluxgen Exp $ +// $Id: StringUtil.cc,v 1.13 2002/10/15 09:51:56 fluxgen Exp $ #include "StringUtil.hh"@@ -134,7 +134,7 @@ return (j+1+total_add);
} void toLower(char * const conv) { - for (int byte_pos = 0; byte_pos < strlen(conv); ++byte_pos) + for (size_t byte_pos = 0; byte_pos < strlen(conv); ++byte_pos) conv[byte_pos] = tolower(conv[byte_pos]); }