diff options
Diffstat (limited to 'sysvipc/sys/sem.h')
-rw-r--r-- | sysvipc/sys/sem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysvipc/sys/sem.h b/sysvipc/sys/sem.h index 9657a14bfe..578a0a47a3 100644 --- a/sysvipc/sys/sem.h +++ b/sysvipc/sys/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -36,7 +36,7 @@ /* Structure used for argument to `semop' to describe operations. */ struct sembuf { - short int sem_num; /* semaphore number */ + unsigned short int sem_num; /* semaphore number */ short int sem_op; /* semaphore operation */ short int sem_flg; /* operation flag */ }; |