diff options
author | Jim Meyering <meyering@redhat.com> | 2009-04-30 08:34:15 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-04-30 08:38:08 +0200 |
commit | 60ec1c604a723647fce65b1bce789320e09102bd (patch) | |
tree | ec533aa60ca5ca4014ad3caeff940c42ed98e83b /libidu/idfile.c | |
parent | 38cb8d817746890c75e3d7938c4dd0874b29b5fd (diff) | |
download | idutils-60ec1c604a723647fce65b1bce789320e09102bd.tar.gz idutils-60ec1c604a723647fce65b1bce789320e09102bd.tar.bz2 idutils-60ec1c604a723647fce65b1bce789320e09102bd.zip |
build: avoid a warning
* libidu/idfile.c (sizeof_idhead): Avoid old-style function definition.
Diffstat (limited to 'libidu/idfile.c')
-rw-r--r-- | libidu/idfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libidu/idfile.c b/libidu/idfile.c index 8963972..5713e08 100644 --- a/libidu/idfile.c +++ b/libidu/idfile.c @@ -1,5 +1,5 @@ /* idfile.c -- read & write mkid database file header - Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007-2008 + Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007-2009 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> @@ -94,7 +94,7 @@ locate_id_file_name (char const *arg) /****************************************************************************/ int -sizeof_idhead () +sizeof_idhead (void) { return io_idhead (0, io_size, 0); } |