summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@x-pk2.(none)>2011-06-09 14:08:45 +0800
committerroot <root@x-pk2.(none)>2011-06-09 14:08:45 +0800
commit4ce1092a61cc1c8bbf44eeb3fc8d9f1cd34be078 (patch)
treea62597e198db1c2e946952796fcece0c58b6fda8
parentecac080e061b4165ebc23c36ab92f3a076f82006 (diff)
Indent left.
-rwxr-xr-xtestedid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testedid.c b/testedid.c
index 7b33aa3..12c61c8 100755
--- a/testedid.c
+++ b/testedid.c
@@ -442,14 +442,14 @@ void analizeedid(char edid[])
int phdmiindex = gethdmiblock(edid);
if(phdmiindex != -1)
{
- printf("having a hdmi block, start position is:%2hhx\n",phdmiindex);
+ printf("\tHaving a hdmi block, start position is:%2hhx\n",phdmiindex);
char *bppinfo[]={ "DVI_Dual" , "", "", "DC_Y444", "DC_30bit", "DC_36bit", "DC_48bit", "Supports_AI"};
char bppbyte=edid[phdmiindex + 5];
for(int i=0;i<8;i++)
{
if(bppbyte & 0x01)
{
- printf("HDMI bpp supports: %s\n",bppinfo[i]);
+ printf("\tHDMI bpp supports: %s\n",bppinfo[i]);
}
bppbyte = bppbyte >> 1;
}