summaryrefslogtreecommitdiff
path: root/libc/error/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/error/error.c')
-rw-r--r--libc/error/error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/error/error.c b/libc/error/error.c
index 3695719..4be2a56 100644
--- a/libc/error/error.c
+++ b/libc/error/error.c
@@ -24,7 +24,7 @@ int err;
}
if( err <= 0 ) goto unknown; /* NB the <= allows comments in the file */
- fd = open("/usr/lib/liberror.txt", 0);
+ fd = open("/lib/liberror.txt", 0);
if( fd < 0 ) goto unknown;
while( (cc=read(fd, inbuf, sizeof(inbuf))) > 0 )