hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From f4f81bdadb9515938b3b5d13707bd4b9322fd967 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 26 Jun 2017 22:37:13 -0700
Subject: [PATCH 2/2] Fix printf format errors
 
error: format not a string literal and no format arguments
 
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 
diff --git a/main.c b/main.c
index 664acac..d568fb1 100644
--- a/main.c
+++ b/main.c
@@ -588,10 +588,10 @@ static void callback(long inpos, int function){
         buffer[aheadposition+19]='>';
     }
    
-    fprintf(stderr,buffer);
+    fprintf(stderr, "%s", buffer);
        
     if (logfile != NULL && function==-1) {
-      fprintf(logfile,buffer+1);
+      fprintf(logfile, "%s", buffer+1);
       fprintf(logfile,"\n\n");
       fflush(logfile);
     }
-- 
2.13.2