changeset 8333:96afaf6c40a1

Avoid a gcc warning.
author Bruno Haible <bruno@clisp.org>
date Sun, 04 Mar 2007 20:20:07 +0000
parents 033df6c13b88
children a601c63691bf
files tests/test-alloca-opt.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-alloca-opt.c
+++ b/tests/test-alloca-opt.c
@@ -29,6 +29,7 @@
 do_allocation (int n)
 {
   void *ptr = alloca (n);
+  (void) ptr;
 }
 
 void (*func) (int) = do_allocation;