From b0beadabbe180e3bc729e27a5de79f9f1fc3bd0a Mon Sep 17 00:00:00 2001 From: "benl@cse.unsw.edu.au" Date: Wed, 3 Feb 2010 02:31:24 +0000 Subject: [PATCH] Stifle warning about printf format strings --- rts/Hpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/Hpc.c b/rts/Hpc.c index cf75a05..dd67227 100644 --- a/rts/Hpc.c +++ b/rts/Hpc.c @@ -200,7 +200,7 @@ static void hpc_init(void) { /* Then, try open the file */ tixFilename = (char *) malloc(strlen(hpc_tixdir) + strlen(prog_name) + 12); - sprintf(tixFilename,"%s/%s-%d.tix",hpc_tixdir,prog_name,hpc_pid); + sprintf(tixFilename,"%s/%s-%d.tix",hpc_tixdir,prog_name,(int)hpc_pid); } else { tixFilename = (char *) malloc(strlen(prog_name) + 6); sprintf(tixFilename, "%s.tix", prog_name); -- 1.7.10.4