svn commit: r363409 - head/lib/libbe

Kyle Evans kevans at FreeBSD.org
Wed Jul 22 02:09:11 UTC 2020


Author: kevans
Date: Wed Jul 22 02:09:10 2020
New Revision: 363409
URL: https://svnweb.freebsd.org/changeset/base/363409

Log:
  libbe: annotate lbh as __unused in be_is_auto_snapshot_name
  
  lbh is included for consistency with other functions and in case
  future work needs to use it, but it is currently unused. Mark it,
  and a post-OpenZFS-import world will be able to raise WARNS of
  libbe to the default (pending some minor changes to openzfs libzfs).
  
  MFC after:	3 days

Modified:
  head/lib/libbe/be.c

Modified: head/lib/libbe/be.c
==============================================================================
--- head/lib/libbe/be.c	Wed Jul 22 00:44:47 2020	(r363408)
+++ head/lib/libbe/be.c	Wed Jul 22 02:09:10 2020	(r363409)
@@ -563,7 +563,7 @@ be_setup_snapshot_name(libbe_handle_t *lbh, char *buf,
 }
 
 bool
-be_is_auto_snapshot_name(libbe_handle_t *lbh, const char *name)
+be_is_auto_snapshot_name(libbe_handle_t *lbh __unused, const char *name)
 {
 	const char *snap;
 	int day, hour, minute, month, second, serial, year;


More information about the svn-src-all mailing list