Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2012-09-11 18:05:11 +0000
committerEugene Tarassov2012-09-11 18:05:11 +0000
commita107a422aa4ecc0d7b53f49cf7120aaa9765371d (patch)
tree1369086b2fdc5ad64fbc4762ceaa51cc373d5b23 /agent/tcf/framework/cpudefs.c
parente060ce81c8b14656f0df66be26e7310f5defa84c (diff)
downloadorg.eclipse.tcf.agent-a107a422aa4ecc0d7b53f49cf7120aaa9765371d.tar.gz
org.eclipse.tcf.agent-a107a422aa4ecc0d7b53f49cf7120aaa9765371d.tar.xz
org.eclipse.tcf.agent-a107a422aa4ecc0d7b53f49cf7120aaa9765371d.zip
TCF Agent: fixed misspellings in function names
Diffstat (limited to 'agent/tcf/framework/cpudefs.c')
-rw-r--r--agent/tcf/framework/cpudefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/tcf/framework/cpudefs.c b/agent/tcf/framework/cpudefs.c
index 4ca7ee9b..cef32795 100644
--- a/agent/tcf/framework/cpudefs.c
+++ b/agent/tcf/framework/cpudefs.c
@@ -432,7 +432,7 @@ static void swap_bytes(void * buf, size_t size) {
#define bit_mask(n) (1u << (big_endian ? 7 - n % 8 : n % 8))
-void read_location_peices(Context * ctx, StackFrame * frame,
+void read_location_pieces(Context * ctx, StackFrame * frame,
LocationPiece * pieces, unsigned pieces_cnt, int big_endian,
void ** value, size_t * size) {
unsigned n = 0;
@@ -486,7 +486,7 @@ void read_location_peices(Context * ctx, StackFrame * frame,
*size = bf_offs / 8;
}
-void write_location_peices(Context * ctx, StackFrame * frame,
+void write_location_pieces(Context * ctx, StackFrame * frame,
LocationPiece * pieces, unsigned pieces_cnt, int big_endian,
void * value, size_t size) {
unsigned n = 0;

Back to the top