File: format_security_patch

package info (click to toggle)
asciijump 1.0.2~beta-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 880 kB
  • sloc: ansic: 4,665; sh: 2,582; makefile: 190
file content (25 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (3)
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
From: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
Date: Tue, 6 Feb 2018 20:12:26 +0900
Subject: format_security_patch

---
 cmdline.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmdline.c b/cmdline.c
index 68e2cda..d5ef130 100644
--- a/cmdline.c
+++ b/cmdline.c
@@ -29,10 +29,10 @@ int parse_cmdline(int argc, char **argv)
 	for (; i < argc; i++) 
 		switch(optionid(argv[i])) {
 		case Help:
-			printf(usage);
+			printf("%s", usage);
 			return 0;
 		case Version:
-			printf(version);
+			printf("%s", version);
 			return 0;
 		case Matrix_full:
 			mx_mode = MATRIX_FULL;