changeset 14710:6d888db04e55

Silence unused variable warnings * lu-utils.c (announce_mkdir): Explicitly mark dir and options as unused.
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Fri, 01 Jun 2012 13:19:07 -0400
parents a08f6e17336e
children f5c3de9502b2
files liboctave/lo-cutils.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/lo-cutils.c	Tue May 29 17:36:02 2012 -0700
+++ b/liboctave/lo-cutils.c	Fri Jun 01 13:19:07 2012 -0400
@@ -92,6 +92,8 @@
 static void
 announce_mkdir (const char *dir, void *options)
 {
+  (void) dir;
+  (void) options;
   /* Do nothing */
 }