From 8393d46a2dcf3dc687797da45b1d269ae518f90e Mon Sep 17 00:00:00 2001 From: sof Date: Fri, 25 May 2001 18:32:51 +0000 Subject: [PATCH] [project @ 2001-05-25 18:32:51 by sof] wibble - drop a ? from a fprintf format string to avoid having it look like a trigraph seq might be present --- ghc/rts/Interpreter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/rts/Interpreter.c b/ghc/rts/Interpreter.c index 52b25bf..657e25f 100644 --- a/ghc/rts/Interpreter.c +++ b/ghc/rts/Interpreter.c @@ -5,8 +5,8 @@ * Copyright (c) 1994-2000. * * $RCSfile: Interpreter.c,v $ - * $Revision: 1.22 $ - * $Date: 2001/05/21 16:34:22 $ + * $Revision: 1.23 $ + * $Date: 2001/05/25 18:32:51 $ * ---------------------------------------------------------------------------*/ #include "Rts.h" @@ -115,7 +115,7 @@ void interp_startup ( void ) void interp_shutdown ( void ) { int i, j, k, o_max, i_max, j_max; - fprintf(stderr, "%d constrs entered -> (%d BCO, %d UPD, %d ???)\n", + fprintf(stderr, "%d constrs entered -> (%d BCO, %d UPD, %d ??)\n", it_retto_BCO + it_retto_UPDATE + it_retto_other, it_retto_BCO, it_retto_UPDATE, it_retto_other ); fprintf(stderr, "%d total entries, %d unknown entries \n", -- 1.7.10.4