aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uname.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-22 01:48:07 +0000
committerMatt Kraai <kraai@debian.org>2000-12-22 01:48:07 +0000
commita9819b290848e0a760f3805d5937fa050235d707 (patch)
treeb8cb8d939032c0806d62161b01e5836cb808dc3f /coreutils/uname.c
parente9f07fb6e83b75a50760599a5d31f494841eddf7 (diff)
downloadbusybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.gz
busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.bz2
busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.zip
Use busybox error handling functions wherever possible.
Diffstat (limited to 'coreutils/uname.c')
-rw-r--r--coreutils/uname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c
index 2781b80b3..e7e9ff331 100644
--- a/coreutils/uname.c
+++ b/coreutils/uname.c
@@ -114,11 +114,11 @@ int uname_main(int argc, char **argv)
114 toprint = PRINT_SYSNAME; 114 toprint = PRINT_SYSNAME;
115 115
116 if (uname(&name) == -1) 116 if (uname(&name) == -1)
117 perror("cannot get system name"); 117 perror_msg("cannot get system name");
118 118
119#if defined (HAVE_SYSINFO) && defined (SI_ARCHITECTURE) 119#if defined (HAVE_SYSINFO) && defined (SI_ARCHITECTURE)
120 if (sysinfo(SI_ARCHITECTURE, processor, sizeof(processor)) == -1) 120 if (sysinfo(SI_ARCHITECTURE, processor, sizeof(processor)) == -1)
121 perror("cannot get processor type"); 121 perror_msg("cannot get processor type");
122} 122}
123 123
124#else 124#else