. service tells you which device it couldn't stat
[minix3.git] / lib / sysutil / report.c
blobe4f9d5ef1cc050562757b382d4150d8bc016aa3c
1 #include "sysutil.h"
3 /*===========================================================================*
4 * report *
5 *===========================================================================*/
6 PUBLIC void report(who, mess, num)
7 char *who; /* server identification */
8 char *mess; /* message format to print */
9 int num; /* number to go with the message */
11 /* Display a message for a server. */
13 if (num != NO_NUM) {
14 printf("%s: %s %d\n", who, mess, num);
15 } else {
16 printf("%s: %s\n", who, mess);