From 0f1163e823c6ca3c2a81fa296157f5dde0635fea Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 10:11:13 -0800 Subject: target_t -> struct target Remove misleading typedef and redundant suffix from struct target. --- src/target/trace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/target/trace.c') diff --git a/src/target/trace.c b/src/target/trace.c index bc6eec7c..bb57978c 100644 --- a/src/target/trace.c +++ b/src/target/trace.c @@ -25,7 +25,7 @@ #include "trace.h" #include "target.h" -int trace_point(target_t *target, uint32_t number) +int trace_point(struct target *target, uint32_t number) { struct trace *trace = target->trace_info; @@ -49,7 +49,7 @@ int trace_point(target_t *target, uint32_t number) COMMAND_HANDLER(handle_trace_point_command) { - target_t *target = get_current_target(cmd_ctx); + struct target *target = get_current_target(cmd_ctx); struct trace *trace = target->trace_info; if (argc == 0) @@ -97,7 +97,7 @@ COMMAND_HANDLER(handle_trace_point_command) COMMAND_HANDLER(handle_trace_history_command) { - target_t *target = get_current_target(cmd_ctx); + struct target *target = get_current_target(cmd_ctx); struct trace *trace = target->trace_info; if (argc > 0) -- cgit v1.2.3 /'>index : openembedded-core.git
Trygve Laugstøl
summaryrefslogtreecommitdiff
path: root/meta/packages/xorg-xserver/xserver-kdrive-glamo/w100-new-input-world-order.patch
blob: 239ae0bb67e101adb037170f024b0ef0dc44f378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28