diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-10-13 00:56:52 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-10-13 00:56:52 -0400 |
commit | 5eaced69756799e20ba1b3e6fb65299f17e69846 (patch) | |
tree | 95a715f2a15f53fe5e721c51389e4f6d5c211262 /parse-events.c | |
parent | f8766a8266ecbfd46190fb97a393bf7d01971850 (diff) |
add '>' and '<' to valid ops
The greater than and less then were implemented, but were not
listed as valid ops.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'parse-events.c')
-rw-r--r-- | parse-events.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/parse-events.c b/parse-events.c index 5795c09..0c39dbf 100644 --- a/parse-events.c +++ b/parse-events.c | |||
@@ -1177,6 +1177,8 @@ process_op(struct event *event, struct print_arg *arg, char **tok) | |||
1177 | strcmp(token, "*") == 0 || | 1177 | strcmp(token, "*") == 0 || |
1178 | strcmp(token, "^") == 0 || | 1178 | strcmp(token, "^") == 0 || |
1179 | strcmp(token, "/") == 0 || | 1179 | strcmp(token, "/") == 0 || |
1180 | strcmp(token, "<") == 0 || | ||
1181 | strcmp(token, ">") == 0 || | ||
1180 | strcmp(token, "==") == 0 || | 1182 | strcmp(token, "==") == 0 || |
1181 | strcmp(token, "!=") == 0) { | 1183 | strcmp(token, "!=") == 0) { |
1182 | 1184 | ||