Browse Source

Fix typo in property.c

pull/3/head
falkTX 11 years ago
parent
commit
4d3e759a90
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      property.c

+ 3
- 3
property.c View File

@@ -314,9 +314,9 @@ int main (int argc, char* argv[])
for (p = 0; p < description[n].property_cnt; ++p) {
if (description[n].properties[p].type) {
printf ("key: %s value: %s type: %s\n",
description[n].properties[n].key,
description[n].properties[n].data,
description[n].properties[n].type);
description[n].properties[p].key,
description[n].properties[p].data,
description[n].properties[p].type);
} else {
printf ("key: %s value: %s\n",
description[n].properties[p].key,


Loading…
Cancel
Save