Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338984
b: refs/heads/master
c: 8a38cce
h: refs/heads/master
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed Nov 9, 2012
1 parent 13d86be commit de0b638
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: ca383a4df77a07e607123d7763facdc00ce32796
refs/heads/master: 8a38cce4c900307e947eda774f844caf5b9a7083
4 changes: 2 additions & 2 deletions trunk/tools/lib/traceevent/event-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -5561,7 +5561,7 @@ void pevent_free(struct pevent *pevent)
}

if (pevent->func_map) {
for (i = 0; i < pevent->func_count; i++) {
for (i = 0; i < (int)pevent->func_count; i++) {
free(pevent->func_map[i].func);
free(pevent->func_map[i].mod);
}
Expand All @@ -5583,7 +5583,7 @@ void pevent_free(struct pevent *pevent)
}

if (pevent->printk_map) {
for (i = 0; i < pevent->printk_count; i++)
for (i = 0; i < (int)pevent->printk_count; i++)
free(pevent->printk_map[i].printk);
free(pevent->printk_map);
}
Expand Down

0 comments on commit de0b638

Please sign in to comment.