aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common/Common.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-23 13:15:19 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-23 13:15:19 +0000
commitb6ba84c85729bf1187b7c06f6b2f5fd27ec8103b (patch)
tree8568bc334fa0ad51ee42a5ab1cf1434ec8c56a85 /LUFA/Common/Common.h
parenta783bf929bff23459b66c2927ab689dd44fc47fa (diff)
Add UUID Class matching to the Service Discovery Protocol code - SDP is now correctly matched against the generic Service Discovery Class UUID.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1275 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common/Common.h')
-rw-r--r--LUFA/Common/Common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index 308897e6..68419ce2 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -108,9 +108,9 @@
* \ingroup Group_Debugging
*/
#define SERIAL_STREAM_ASSERT(x) MACROS{ if (!(x)) { printf_P(PSTR("%s: Function \"%s\", Line %d: " \
- "Assertion \"%s\" failed.\r\n"), \
- __FILE__, __func__, __LINE__, #x); \
- } }MACROE
+ "Assertion \"%s\" failed.\r\n"), \
+ __FILE__, __func__, __LINE__, #x); } \
+ }MACROE
/* Inline Functions: */
/** Function to reverse the individual bits in a byte - i.e. bit 7 is moved to bit 0, bit 6 to bit 1,