]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* include/grub/util/libzfs.h (libzfs_init): Set argument list to
authorColin Watson <cjwatson@ubuntu.com>
Sun, 1 Aug 2010 21:41:46 +0000 (16:41 -0500)
committerColin Watson <cjwatson@ubuntu.com>
Sun, 1 Aug 2010 21:41:46 +0000 (16:41 -0500)
(void) rather than () so that this is a proper prototype.

ChangeLog
include/grub/util/libzfs.h

index bc6b8fd1891f30838b90db4b5dbd71f92b6a0fe1..daf5517dc788852fd0f3f8549f3aac6d38b5f21f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-01  Colin Watson  <cjwatson@ubuntu.com>
+
+       * include/grub/util/libzfs.h (libzfs_init): Set argument list to
+       (void) rather than () so that this is a proper prototype.
+
 2010-08-01  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * lib/arg.c (grub_arg_show_help): Add the necessary spacing.
index 9fbfd40d14da210fdb80705498af6f4c0e349a7e..0500f70d7833fadcc9376d7d12c2d6decb9b9993 100644 (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 *);