Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304981
b: refs/heads/master
c: 2e7a5fc
h: refs/heads/master
i:
  304979: 8833362
v: v3
  • Loading branch information
Steven Rostedt authored and Frederic Weisbecker committed Apr 25, 2012
1 parent dbcbd5a commit 7be5b1c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b48285980de2070948c8ac73629c605ad9202589
refs/heads/master: 2e7a5fc8d40be9654f589dad467515c1688ccf6b
6 changes: 6 additions & 0 deletions trunk/tools/lib/traceevent/event-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -3130,6 +3130,12 @@ eval_num_arg(void *data, int size, struct event_format *event, struct print_arg
case '+':
val = left + right;
break;
case '/':
val = left / right;
break;
case '*':
val = left * right;
break;
default:
die("unknown op '%s'", arg->op.op);
}
Expand Down

0 comments on commit 7be5b1c

Please sign in to comment.