summaryrefslogtreecommitdiff
path: root/flash_info.c
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@gmail.com>2006-10-09 20:49:57 -0500
committerJosh Boyer <jwboyer@gmail.com>2006-10-09 20:49:57 -0500
commit37f40f5574e04ae050507133ade8fe0e6bae2f0d (patch)
treec1100ad9ef33d3d7097a00459e0e3de03d2a3b75 /flash_info.c
parent6041c88699b0b81a9cdc48a93e96629d99966137 (diff)
Fixup whitespace
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'flash_info.c')
-rw-r--r--flash_info.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/flash_info.c b/flash_info.c
index 7157b9e..f5ed1c6 100644
--- a/flash_info.c
+++ b/flash_info.c
@@ -1,6 +1,6 @@
/*
* flash_info.c -- print info about a MTD device
-*/
+ */
#include <unistd.h>
#include <stdlib.h>
@@ -41,13 +41,13 @@ int main(int argc,char *argv[])
if(ioctl(Fd, MEMGETREGIONINFO, &reginfo) == 0)
{
printf("Region %d is at 0x%x with size 0x%x and "
- "has 0x%x blocks\n", i, reginfo.offset,
- reginfo.erasesize, reginfo.numblocks);
+ "has 0x%x blocks\n", i, reginfo.offset,
+ reginfo.erasesize, reginfo.numblocks);
}
else
{
printf("Strange can not read region %d from a %d region device\n",
- i, regcount);
+ i, regcount);
}
}
}