summaryrefslogtreecommitdiff
path: root/src/roff
diff options
context:
space:
mode:
authorwl <wl>2009-11-20 05:10:17 +0000
committerwl <wl>2009-11-20 05:10:17 +0000
commit41fc277cf92f000407375c41050e361c2cafa2af (patch)
tree06ee3dfc7ba86f9cbe516fbbdd443d07eb8cd7c9 /src/roff
parent9b3bafd5e2738e4eb45729296461bf42fdeffc4a (diff)
downloadgroff-41fc277cf92f000407375c41050e361c2cafa2af.tar.gz
* */*.cpp: Replace `printf(string);' with `printf("%s", string);'.
Diffstat (limited to 'src/roff')
-rw-r--r--src/roff/troff/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roff/troff/node.cpp b/src/roff/troff/node.cpp
index 5136d5aa..48ec00f3 100644
--- a/src/roff/troff/node.cpp
+++ b/src/roff/troff/node.cpp
@@ -2204,7 +2204,7 @@ void glyph_node::debug_node()
if (c)
fprintf(stderr, "%c", c);
else
- fprintf(stderr, ci->nm.contents());
+ fprintf(stderr, "%s", ci->nm.contents());
if (push_state)
fprintf(stderr, " <push_state>");
if (state)