From da04b29a680fbf40038f3a31befff9fa6cd4dd57 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 23 Apr 2015 07:29:15 -0600 Subject: [PATCH] Yet another missing semicolon on DEBUGASSERT --- drivers/pipes/pipe_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pipes/pipe_common.c b/drivers/pipes/pipe_common.c index b4cdfc2e29..dbd3b7568b 100644 --- a/drivers/pipes/pipe_common.c +++ b/drivers/pipes/pipe_common.c @@ -488,10 +488,10 @@ ssize_t pipecommon_write(FAR struct file *filep, FAR const char *buffer, size_t * * On the other hand, it would be very valuable to be able to feed the pipe * from an interrupt handler! TODO: Consider disabling interrupts instead - * of taking semaphores so that pipes can be written from interupt handlers + * of taking semaphores so that pipes can be written from interrupt handlers */ - DEBUGASSERT(up_interrupt_context() == false) + DEBUGASSERT(up_interrupt_context() == false); /* Make sure that we have exclusive access to the device structure */