Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175411
b: refs/heads/master
c: d56728b
h: refs/heads/master
i:
  175409: d3fe4b8
  175407: 42de319
v: v3
  • Loading branch information
Juha Leppanen authored and Ingo Molnar committed Dec 7, 2009
1 parent b0dc8d1 commit 93c98c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d32ba45503acf9c23b301eba2397ca2ee322627b
refs/heads/master: d56728b8d7fb3e1e5e5f97b88fdf6b43a35b4f5e
2 changes: 1 addition & 1 deletion trunk/tools/perf/util/probe-finder.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static int strtailcmp(const char *s1, const char *s2)
{
int i1 = strlen(s1);
int i2 = strlen(s2);
while (--i1 > 0 && --i2 > 0) {
while (--i1 >= 0 && --i2 >= 0) {
if (s1[i1] != s2[i2])
return s1[i1] - s2[i2];
}
Expand Down

0 comments on commit 93c98c2

Please sign in to comment.