16 lines
397 B
Plaintext
16 lines
397 B
Plaintext
From: Santiago Vila
|
|
Subject: Use %s to print a string, not the string itself
|
|
X-Debian-version: 3.6-19
|
|
|
|
--- a/src/names.c
|
|
+++ b/src/names.c
|
|
@@ -907,7 +907,7 @@
|
|
if (ucs2 >= 0)
|
|
printf (format, code);
|
|
else if (mnemonic || counter2 != 112)
|
|
- printf (blanks);
|
|
+ printf ("%s", blanks);
|
|
|
|
if (mnemonic)
|
|
printf (counter2 == 112 ? " %s\n" : " %-3s", mnemonic);
|