summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r--libc/sysdeps/linux/Makefile2
-rw-r--r--libc/sysdeps/linux/common/mkfifo.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile
index a81bb9a21..16980d1b3 100644
--- a/libc/sysdeps/linux/Makefile
+++ b/libc/sysdeps/linux/Makefile
@@ -5,7 +5,7 @@ ARCH = $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/')
all: $(ARCH) common
$(ARCH): dummy
- echo Building for ARCH=$(ARCH)
+ @echo Building for ARCH=$(ARCH)
make -C $(ARCH)
common: dummy
diff --git a/libc/sysdeps/linux/common/mkfifo.c b/libc/sysdeps/linux/common/mkfifo.c
index dbaa9aa3b..876f36b5a 100644
--- a/libc/sysdeps/linux/common/mkfifo.c
+++ b/libc/sysdeps/linux/common/mkfifo.c
@@ -29,6 +29,5 @@
int
mkfifo (const char *path, mode_t mode)
{
- dev_t dev = 0;
- return mknod (path, mode | S_IFIFO, &dev);
+ return mknod (path, mode | S_IFIFO, 0);
}