summaryrefslogtreecommitdiff
path: root/src/target/trace.h
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 07:11:40 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 07:11:40 +0000
commit0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc (patch)
treee1320b3502be841268b3a9c5909f9990868c6015 /src/target/trace.h
parent86e4324f1bd4cd8135cb857e4b940b1f2e872dc3 (diff)
downloadopenocd+libswd-0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc.tar.gz
openocd+libswd-0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc.tar.bz2
openocd+libswd-0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc.tar.xz
openocd+libswd-0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc.zip
Transform 'u64' to 'uint64_t'
- Replace '\([^_]\)u64' with '\1uint64_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2282 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/trace.h')
-rw-r--r--src/target/trace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/trace.h b/src/target/trace.h
index 90bd6007..0a9ccc55 100644
--- a/src/target/trace.h
+++ b/src/target/trace.h
@@ -28,7 +28,7 @@ struct command_context_s;
typedef struct trace_point_s
{
uint32_t address;
- u64 hit_counter;
+ uint64_t hit_counter;
} trace_point_t;
typedef struct trace_s