using functions from `xmalloc.c'.

1998-07-06  Martin Baulig  <martin@home-of-linux.org>

	* sysdeps/common/mountlist.c: using functions from `xmalloc.c'.

	* sysdeps/common/error.c: all functions now accept NULL as
	`server' argument.
This commit is contained in:
Martin Baulig
1998-07-07 00:10:49 +00:00
committed by Martin Baulig
parent 2aa20e2060
commit 0b4f757b2b
3 changed files with 27 additions and 8 deletions

View File

@@ -21,6 +21,8 @@
#include <glibtop/error.h>
#define DEFAULT_NAME "ERROR"
/* Prints error message and exits. */
void
@@ -30,7 +32,7 @@ glibtop_error_r (glibtop *server, char *format, ...)
va_start (ap, format);
fprintf (stderr, "%s: ", server->name);
fprintf (stderr, "%s: ", server ? server->name : DEFAULT_NAME);
vfprintf (stderr, format, ap);
fprintf (stderr, "\n");
@@ -45,7 +47,7 @@ glibtop_error_io_r (glibtop *server, char *format, ...)
va_start (ap, format);
fprintf (stderr, "%s: ", server->name);
fprintf (stderr, "%s: ", server ? server->name : DEFAULT_NAME);
vfprintf (stderr, format, ap);
fprintf (stderr, ": %s\n", strerror (errno));
@@ -60,7 +62,7 @@ glibtop_warn_r (glibtop *server, char *format, ...)
va_start (ap, format);
fprintf (stderr, "%s: ", server->name);
fprintf (stderr, "%s: ", server ? server->name : DEFAULT_NAME);
vfprintf (stderr, format, ap);
fprintf (stderr, "\n");
@@ -74,7 +76,7 @@ glibtop_warn_io_r (glibtop *server, char *format, ...)
va_start (ap, format);
fprintf (stderr, "%s: ", server->name);
fprintf (stderr, "%s: ", server ? server->name : DEFAULT_NAME);
vfprintf (stderr, format, ap);
fprintf (stderr, ": %s\n", strerror (errno));