aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand/fstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libstand/fstat.c')
-rw-r--r--lib/libstand/fstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/fstat.c b/lib/libstand/fstat.c
index 8504acfb8bb0..3a5f39f93fae 100644
--- a/lib/libstand/fstat.c
+++ b/lib/libstand/fstat.c
@@ -45,7 +45,7 @@ fstat(fd, sb)
int fd;
struct stat *sb;
{
- register struct open_file *f = &files[fd];
+ struct open_file *f = &files[fd];
if ((unsigned)fd >= SOPEN_MAX || f->f_flags == 0) {
errno = EBADF;