summaryrefslogtreecommitdiff
path: root/src/util/output.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/output.cpp')
-rw-r--r--src/util/output.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/output.cpp b/src/util/output.cpp
index 10db4f723..34a3af93e 100644
--- a/src/util/output.cpp
+++ b/src/util/output.cpp
@@ -63,7 +63,7 @@ void DebugC::printf(const char* tag, const char* fmt, ...) {
}
}
-void DebugC::printf(string tag, const char* fmt, ...) {
+void DebugC::printf(std::string tag, const char* fmt, ...) {
if(d_tags.find(tag) != d_tags.end()) {
// chop off output after 1024 bytes
char buf[1024];
@@ -127,7 +127,7 @@ void TraceC::printf(const char* tag, const char* fmt, ...) {
}
}
-void TraceC::printf(string tag, const char* fmt, ...) {
+void TraceC::printf(std::string tag, const char* fmt, ...) {
if(d_tags.find(tag) != d_tags.end()) {
// chop off output after 1024 bytes
char buf[1024];
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback