svn commit: r344308 - head/sys/teken

Ed Schouten ed at FreeBSD.org
Tue Feb 19 21:49:49 UTC 2019


Author: ed
Date: Tue Feb 19 21:49:48 2019
New Revision: 344308
URL: https://svnweb.freebsd.org/changeset/base/344308

Log:
  Add missing __unused attributes to unused function arguments.
  
  This fixes the userspace build of libteken.

Modified:
  head/sys/teken/teken_subr.h

Modified: head/sys/teken/teken_subr.h
==============================================================================
--- head/sys/teken/teken_subr.h	Tue Feb 19 21:33:02 2019	(r344307)
+++ head/sys/teken/teken_subr.h	Tue Feb 19 21:49:48 2019	(r344308)
@@ -372,7 +372,7 @@ teken_subr_cursor_up(teken_t *t, unsigned int nrows)
 }
 
 static void
-teken_subr_set_cursor_style(teken_t *t, unsigned int style)
+teken_subr_set_cursor_style(teken_t *t __unused, unsigned int style __unused)
 {
 
 	/* TODO */


More information about the svn-src-all mailing list