summaryrefslogtreecommitdiff
path: root/cesar/hle/src
diff options
context:
space:
mode:
authorlaranjeiro2008-09-16 15:02:02 +0000
committerlaranjeiro2008-09-16 15:02:02 +0000
commit8732f6f69c13ea30f7fbee60473172c10d279940 (patch)
tree2934033967c69fa2ddaedd8e9beca8902311b178 /cesar/hle/src
parent73ade422c34ec4505337a8681c102ff1d2eb0d21 (diff)
hle: Fix a TRACE to the correct data.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2995 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/hle/src')
-rw-r--r--cesar/hle/src/hle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cesar/hle/src/hle.c b/cesar/hle/src/hle.c
index abd4c8bc52..0a730c4d75 100644
--- a/cesar/hle/src/hle.c
+++ b/cesar/hle/src/hle.c
@@ -207,7 +207,7 @@ void hle_mme_send (hle_t *ctx, u8 *buffer, uint length)
dbg_assert (ETH_PACKET_MIN_SIZE <= length && length <= ETH_PACKET_MAX_SIZE);
/* Tracing data. */
- HLE_TRACE (MME_BUFFER_ADD, mac_ntb(), buffer);
+ HLE_TRACE (MME_SEND, mac_ntb(), length, buffer);
cl_mme_ul_send (ctx->cl, buffer, length);
}