diff options
author | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2005-11-08 13:40:23 +0000 |
---|---|---|
committer | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2005-11-08 13:40:23 +0000 |
commit | 7408d67d2eec55f3142ab3af90841110f105d8eb (patch) | |
tree | 7d668b99c0f27c73d2e33b587d22d2ccde37091a /src | |
parent | 26b4c59e5e96729b582c005083258649d5e28687 (diff) |
cosmetic issues (linewrap)
git-svn-id: https://svn.gnumonks.org/trunk/librfid@1666 e0336214-984f-0b4b-a45f-81c69e1f0ede
Diffstat (limited to 'src')
-rw-r--r-- | src/rfid_proto_tcl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rfid_proto_tcl.c b/src/rfid_proto_tcl.c index 8f8eae9..13fba08 100644 --- a/src/rfid_proto_tcl.c +++ b/src/rfid_proto_tcl.c @@ -662,13 +662,14 @@ do_tx: net_payload_len = _rx_len - (inf - rx_buf); DEBUGPC("%u bytes\n", net_payload_len); memcpy(_rx_data, inf, net_payload_len); - /* increment the number of payload bytes that we actually received */ + /* increment the number of payload bytes that we actually + * received */ *rx_len += net_payload_len; _rx_data += net_payload_len; if (*rx_buf & 0x10) { /* we're not the last frame in the chain, continue rx */ - DEBUGP("we're not the last frame in the chain, continue\n"); + DEBUGP("not the last frame in the chain, continue\n"); ack_len = sizeof(ack); tcl_build_prologue_r(&h->priv.tcl, ack, &ack_len, 0); _tx = ack; |