diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-29 08:35:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-29 08:35:58 +0000 |
commit | 51a16d1529a9bf43faeac796f6013ad004c9b961 (patch) | |
tree | 40d534f546a3af3550596054defb274b9a851371 /nfsd | |
parent | 2a348a0bd593ff396a0aa5f0fc0ec3a80a2cc1c9 (diff) |
2002-05-29 Roland McGrath <roland@frob.com>
* nfsd.h (struct proctable): [0] -> [], for newfangled GCC.
Diffstat (limited to 'nfsd')
-rw-r--r-- | nfsd/nfsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nfsd/nfsd.h b/nfsd/nfsd.h index ba423f2d..e89a411b 100644 --- a/nfsd/nfsd.h +++ b/nfsd/nfsd.h @@ -1,5 +1,5 @@ /* - Copyright (C) 1996, 98 Free Software Foundation, Inc. + Copyright (C) 1996,98,2002 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -76,7 +76,7 @@ struct proctable { int min; int max; - struct procedure procs[0]; + struct procedure procs[]; }; volatile struct mapped_time_value *mapped_time; |