9
0
Fork 0

Fix syntax error in debug statement

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@2367 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2009-12-17 15:10:46 +00:00
parent 68f95b1106
commit 292c7965f8
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ static ssize_t ftl_flush(FAR void *priv, FAR const uint8_t *buffer,
nxfrd = MTD_BWRITE(dev->mtd, alignedblock, dev->blkper, buffer);
if (nxfrd != dev->blkper)
{
fdbg("Write erase block %d failed: %d\n", , alignedblock, nxfrd);
fdbg("Write erase block %d failed: %d\n", alignedblock, nxfrd);
return -EIO;
}