examples: Fix warnings of allocate_module_test.
authorAndreas Schneider <asn@cryptomilk.org>
Mon, 25 Jun 2012 14:01:36 +0000 (16:01 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 25 Jun 2012 14:01:36 +0000 (16:01 +0200)
src/example/allocate_module_test.c

index 2346a693f7dfdcdb242df23762915dd140873345..1d1e164a9d654182dbd455de3f25477980ad3add 100644 (file)
@@ -22,22 +22,28 @@ extern void leak_memory();
 extern void buffer_overflow();
 extern void buffer_underflow();
 
-// Test case that fails as leak_memory() leaks a dynamically allocated block.
+/* Test case that fails as leak_memory() leaks a dynamically allocated block. */
 static void leak_memory_test(void **state) {
+    (void) state; /* unused */
+
     leak_memory();
 }
 
-// Test case that fails as buffer_overflow() corrupts an allocated block.
+/* Test case that fails as buffer_overflow() corrupts an allocated block. */
 static void buffer_overflow_test(void **state) {
+    (void) state; /* unused */
+
     buffer_overflow();
 }
 
-// Test case that fails as buffer_underflow() corrupts an allocated block.
+/* Test case that fails as buffer_underflow() corrupts an allocated block. */
 static void buffer_underflow_test(void **state) {
+    (void) state; /* unused */
+
     buffer_underflow();
 }
 
-int main(int argc, char* argv[]) {
+int main(void) {
     const UnitTest tests[] = {
         unit_test(leak_memory_test),
         unit_test(buffer_overflow_test),