mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
More missing semicolons after DEBUGASSERT
This commit is contained in:
@@ -1559,7 +1559,7 @@ static ssize_t mmcsd_reload(FAR void *dev, FAR uint8_t *buffer,
|
||||
#endif
|
||||
ssize_t ret;
|
||||
|
||||
DEBUGASSERT(priv != NULL && buffer != NULL && nblocks > 0)
|
||||
DEBUGASSERT(priv != NULL && buffer != NULL && nblocks > 0);
|
||||
|
||||
#ifdef CONFIG_MMCSD_MULTIBLOCK_DISABLE
|
||||
/* Read each block using only the single block transfer method */
|
||||
@@ -1937,7 +1937,7 @@ static ssize_t mmcsd_flush(FAR void *dev, FAR const uint8_t *buffer,
|
||||
#endif
|
||||
ssize_t ret;
|
||||
|
||||
DEBUGASSERT(priv != NULL && buffer != NULL && nblocks > 0)
|
||||
DEBUGASSERT(priv != NULL && buffer != NULL && nblocks > 0);
|
||||
|
||||
#ifdef CONFIG_MMCSD_MULTIBLOCK_DISABLE
|
||||
/* Write each block using only the single block transfer method */
|
||||
|
||||
Reference in New Issue
Block a user