aboutsummaryrefslogtreecommitdiffstats
path: root/ports/AVR/chcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'ports/AVR/chcore.h')
-rw-r--r--ports/AVR/chcore.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/AVR/chcore.h b/ports/AVR/chcore.h
index b967cb9a0..34eba546c 100644
--- a/ports/AVR/chcore.h
+++ b/ports/AVR/chcore.h
@@ -148,9 +148,9 @@ typedef struct {
*/
#define STACK_ALIGN(n) ((((n) - 1) | sizeof(stkalign_t)) + 1)
- /**
- * Computes the thread working area global size.
- */
+/**
+ * Computes the thread working area global size.
+ */
#define THD_WA_SIZE(n) STACK_ALIGN(sizeof(Thread) + \
(sizeof(struct intctx) - 1) + \
(sizeof(struct extctx) - 1) + \