Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 232306
b: refs/heads/master
c: 00e99a4
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Renninger authored and Arnaldo Carvalho de Melo committed Jan 22, 2011
1 parent 92e563b commit 147c141
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 065bef5af620dcedeb6dc26fdc0b1739a3c9adef
refs/heads/master: 00e99a49f6f3a6b5a84ba8bf8f632c9b974bea7a
4 changes: 2 additions & 2 deletions trunk/tools/perf/util/svghelper.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ static double cpu2y(int cpu)
return cpu2slot(cpu) * SLOT_MULT;
}

static double time2pixels(u64 time)
static double time2pixels(u64 __time)
{
double X;

X = 1.0 * svg_page_width * (time - first_time) / (last_time - first_time);
X = 1.0 * svg_page_width * (__time - first_time) / (last_time - first_time);
return X;
}

Expand Down

0 comments on commit 147c141

Please sign in to comment.