# | Line 183 | Line 183 | cvcomm( /* convert a command */ | |
---|---|---|
183 | exit(1); | |
184 | } | |
185 | convert(buf, pin); | |
186 | < | pclose(pin); |
186 | > | if (pclose(pin) != 0) { |
187 | > | fprintf(stderr, |
188 | > | "%s: (%s): bad status from \"%s\"\n", |
189 | > | progname, fname, buf); |
190 | > | exit(1); |
191 | > | } |
192 | } else | |
193 | printf("\n%s\n", buf); | |
194 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |