Skip to content

Commit

Permalink
fix 4945
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Jun 18, 2017
1 parent c0ba881 commit 7beb7db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions far/changelog
@@ -1,3 +1,7 @@
drkns 18.06.2017 10:59:10 +0000 - build 4974

1. Уточнение 4945.

drkns 05.06.2017 13:26:32 +0200 - build 4973

1. Уточнение 4887.
Expand Down
4 changes: 2 additions & 2 deletions far/string_utils.cpp
Expand Up @@ -114,13 +114,13 @@ void lower(wchar_t* Str)

string& upper(string& Str, size_t Pos, size_t Count)
{
upper(&Str[0] + Pos, Count == string::npos? Str.size() - Pos : Str.size());
upper(&Str[0] + Pos, Count == string::npos? Str.size() - Pos : Count);
return Str;
}

string& lower(string& Str, size_t Pos, size_t Count)
{
lower(&Str[0] + Pos, Count == string::npos ? Str.size() - Pos : Str.size());
lower(&Str[0] + Pos, Count == string::npos? Str.size() - Pos : Count);
return Str;
}

Expand Down
2 changes: 1 addition & 1 deletion far/vbuild.m4
@@ -1 +1 @@
m4_define(BUILD,4973)m4_dnl
m4_define(BUILD,4974)m4_dnl

0 comments on commit 7beb7db

Please sign in to comment.