| 39 | // output error message to user |
| 40 | |
| 41 | static void errPrint(IStatus* status) |
| 42 | { |
| 43 | char buf[256]; |
| 44 | master->getUtilInterface()->formatStatus(buf, sizeof(buf), status); |
| 45 | fprintf(stderr, "%s\n", buf); |
| 46 | } |
| 47 | |
| 48 | |
| 49 | // align target to alignment boundary |
no test coverage detected