* include/grub/util/libzfs.h (libzfs_init): Set argument list to

(void) rather than () so that this is a proper prototype.
This commit is contained in:
Colin Watson 2010-08-01 16:41:46 -05:00
parent 553df63d76
commit 8bfe31d82b
2 changed files with 6 additions and 1 deletions

View file

@ -30,7 +30,7 @@
typedef void libzfs_handle_t;
typedef void zpool_handle_t;
extern libzfs_handle_t *libzfs_init ();
extern libzfs_handle_t *libzfs_init (void);
extern void libzfs_fini (libzfs_handle_t *);
extern zpool_handle_t *zpool_open (libzfs_handle_t *, const char *);