2021-10-11 08:33:14 -04:00
|
|
|
From: Stephen Kitt <skitt@debian.org>
|
|
|
|
Date: Mon, 11 Oct 2021 14:30:00 +0200
|
|
|
|
Subject: Add missing format strings
|
|
|
|
|
2023-07-28 07:55:00 -04:00
|
|
|
---
|
|
|
|
canfield/canfield/canfield.c | 4 ++--
|
|
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/canfield/canfield/canfield.c b/canfield/canfield/canfield.c
|
|
|
|
index 1aa1d3f..39067cf 100644
|
2021-10-11 08:33:14 -04:00
|
|
|
--- a/canfield/canfield/canfield.c
|
|
|
|
+++ b/canfield/canfield/canfield.c
|
2023-07-28 07:55:00 -04:00
|
|
|
@@ -1647,7 +1647,7 @@ instruct()
|
2021-10-11 08:33:14 -04:00
|
|
|
return;
|
|
|
|
clear();
|
|
|
|
for (cp = basicinstructions; *cp != 0; cp++)
|
|
|
|
- printw(*cp);
|
|
|
|
+ printw("%s", *cp);
|
|
|
|
refresh();
|
|
|
|
getch();
|
|
|
|
clear();
|
2023-07-28 07:55:00 -04:00
|
|
|
@@ -1660,7 +1660,7 @@ instruct()
|
2021-10-11 08:33:14 -04:00
|
|
|
return;
|
|
|
|
clear();
|
|
|
|
for (cp = bettinginstructions; *cp != 0; cp++)
|
|
|
|
- printw(*cp);
|
|
|
|
+ printw("%s", *cp);
|
|
|
|
refresh();
|
|
|
|
getch();
|
|
|
|
}
|