aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/RNDISEthernet/Lib
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-03-23 09:26:41 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-03-23 09:26:41 +0000
commit8f5ab27dc9b2a7c4944a5e7d149f39959ead477e (patch)
tree9abb5296608dacb4d142cad90441caf10a7e93b4 /Demos/Device/LowLevel/RNDISEthernet/Lib
parentfa5c8700bc0f9efb36f779e217c9fd1e81f8efb6 (diff)
downloadlufa-8f5ab27dc9b2a7c4944a5e7d149f39959ead477e.tar.gz
lufa-8f5ab27dc9b2a7c4944a5e7d149f39959ead477e.tar.bz2
lufa-8f5ab27dc9b2a7c4944a5e7d149f39959ead477e.zip
Use the MIN() macro where possible instead of manual "(x < y) ? x : y" constructs.
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib')
-rw-r--r--Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
index 1cc907862..019329e2b 100644
--- a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
+++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
@@ -181,7 +181,7 @@ void Webserver_ApplicationCallback(TCP_ConnectionState_t* const ConnectionState,
uint16_t Length;
/* Determine the length of the loaded block */
- Length = ((RemLength > HTTP_REPLY_BLOCK_SIZE) ? HTTP_REPLY_BLOCK_SIZE : RemLength);
+ Length = MIN(RemLength, HTTP_REPLY_BLOCK_SIZE);
/* Copy the next buffer sized block of the page to the packet buffer */
strncpy_P(BufferDataStr, &HTTPPage[PageBlock * HTTP_REPLY_BLOCK_SIZE], Length);