From c4b1e8cd3900152d6e38e0b6acf702d2e3f6efc7 Mon Sep 17 00:00:00 2001
From: simonm <unknown>
Date: Mon, 25 Jan 1999 12:01:21 +0000
Subject: [PATCH] [project @ 1999-01-25 12:01:21 by simonm] Avoid a couple of C
 compiler warnings.

---
 ghc/rts/hooks/Trace.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ghc/rts/hooks/Trace.c b/ghc/rts/hooks/Trace.c
index b24e9e9a7119..55f6c216790c 100644
--- a/ghc/rts/hooks/Trace.c
+++ b/ghc/rts/hooks/Trace.c
@@ -1,5 +1,5 @@
 /* -----------------------------------------------------------------------------
- * $Id: Trace.c,v 1.2 1998/12/02 13:29:16 simonm Exp $
+ * $Id: Trace.c,v 1.3 1999/01/25 12:01:21 simonm Exp $
  *
  * User-overridable RTS hooks.
  *
@@ -8,7 +8,7 @@
 #include "Rts.h"
 
 void
-PreTraceHook (long fd)
+PreTraceHook (long fd UNUSED)
 {
   /* Default is not to print anything, however this might be useful:
    *
@@ -18,7 +18,7 @@ PreTraceHook (long fd)
 }
 
 void
-PostTraceHook (long fd)
+PostTraceHook (long fd UNUSED)
 {
   /* Default is not to print anything, however this might be useful:
    *
-- 
GitLab