Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 312335
b: refs/heads/master
c: 0fc45ef
h: refs/heads/master
i:
  312333: 4e1ff50
  312331: cf833d3
  312327: d2fd64f
  312319: 30705be
v: v3
  • Loading branch information
Namhyung Kim authored and Namhyung Kim committed Jul 4, 2012
1 parent 1acc26f commit b95d219
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: c5b35b731965d16fa8c966e288489857097e0b25
refs/heads/master: 0fc45ef5202a34b5862ca246740e6ab50bc3e3e1
8 changes: 4 additions & 4 deletions trunk/tools/lib/traceevent/event-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,12 +511,12 @@ struct printk_list {

static int printk_cmp(const void *a, const void *b)
{
const struct func_map *fa = a;
const struct func_map *fb = b;
const struct printk_map *pa = a;
const struct printk_map *pb = b;

if (fa->addr < fb->addr)
if (pa->addr < pb->addr)
return -1;
if (fa->addr > fb->addr)
if (pa->addr > pb->addr)
return 1;

return 0;
Expand Down

0 comments on commit b95d219

Please sign in to comment.