summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-01-12 13:55:17 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-01-12 13:55:17 (GMT)
commit33001689292073293d65841e627cff43c8e39644 (patch)
tree0b08e028a7412792eb9edc0d9e83e2bf95b57a4d
parent735203d07ce01c587b6807122e7a220a2c89de7d (diff)
downloadDoxygen-33001689292073293d65841e627cff43c8e39644.zip
Doxygen-33001689292073293d65841e627cff43c8e39644.tar.gz
Doxygen-33001689292073293d65841e627cff43c8e39644.tar.bz2
Bug when running docbook with debug output
Wrong "file pointer" used in print.
-rw-r--r--src/docbookgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docbookgen.cpp b/src/docbookgen.cpp
index 05e9347..d9e79cb 100644
--- a/src/docbookgen.cpp
+++ b/src/docbookgen.cpp
@@ -256,13 +256,13 @@ void DocbookCodeGenerator::finish()
}
void DocbookCodeGenerator::startCodeFragment(const char *)
{
-DB_GEN_C
+DB_GEN_C1(m_t)
m_t << "<programlisting>";
}
void DocbookCodeGenerator::endCodeFragment(const char *)
{
-DB_GEN_C
+DB_GEN_C1(m_t)
//endCodeLine checks is there is still an open code line, if so closes it.
endCodeLine();