aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-06-16 11:46:42 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-06-16 11:46:42 +0000
commit69dc32c5f01e8640c1bdf83df3a2a7699ea54560 (patch)
treeb774ef64abbb86afb9039102726375295348da0d /Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
parent711542ee8986482a12796ffdbc4a32912b267e44 (diff)
downloadlufa-69dc32c5f01e8640c1bdf83df3a2a7699ea54560.tar.gz
lufa-69dc32c5f01e8640c1bdf83df3a2a7699ea54560.tar.bz2
lufa-69dc32c5f01e8640c1bdf83df3a2a7699ea54560.zip
Fix compile and Doxygen errors due to the spell-check changes in the source code.
Diffstat (limited to 'Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h')
-rw-r--r--Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
index b5152b312..ac144150c 100644
--- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
+++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
@@ -101,9 +101,7 @@
*
* \return Boolean true if the buffer has been captured by the application for device-to-host transmissions, false otherwise
*/
- #define TCP_APP_HAVE_CAPTURED_BUFFER(Buffer) (!(Buffer->Ready) && Buffer->InUse && \
-
- (Buffer->Direction == TCP_PACKETDIR_OUT))
+ #define TCP_APP_HAVE_CAPTURED_BUFFER(Buffer) (!(Buffer->Ready) && Buffer->InUse && (Buffer->Direction == TCP_PACKETDIR_OUT))
/** Application macro: Indicates if the application can lock the buffer for multiple continued device-to-host transmissions.
*