| # | Line 108 | Line 108 | main(int argc, char *argv[]) | |
|---|---|---|
| 108 | printf("Manufacturer: '%s'\n", bsdf->makr); | |
| 109 | printf("Width, Height, Thickness (m): %.4e, %.4e, %.4e\n", | |
| 110 | bsdf->dim[0], bsdf->dim[1], bsdf->dim[2]); | |
| 111 | < | printf("Has geometry: %s\n", bsdf->mgf ? "yes" : "no"); |
| 111 | > | if (bsdf->mgf) |
| 112 | > | printf("Has geometry: %lu bytes\n", |
| 113 | > | (unsigned long)strlen(bsdf->mgf)); |
| 114 | > | else |
| 115 | > | printf("Has geometry: no\n"); |
| 116 | continue; | |
| 117 | case 'C': /* report constant values */ | |
| 118 | if (!bsdf) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |