all repos — fluxbox @ 3566c513b400a5fbc569f7ad6295214529c70c04

custom fork of the fluxbox windowmanager

signed to unsigned
fluxgen fluxgen
commit

3566c513b400a5fbc569f7ad6295214529c70c04

parent

d342afc87a7a800f266604b23a03fbe8a8be806d

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/StringUtil.ccsrc/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]); }