diff --git a/src/debug.cc b/src/debug.cc index 7d68fb5b..6d865013 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -7,11 +7,11 @@ namespace Kakoune { -void write_debug(const String& str) +void write_debug(StringView str) { if (not BufferManager::has_instance()) { - fprintf(stderr, "%s\n", str.c_str()); + fprintf(stderr, "%s\n", (const char*)str.zstr()); return; } diff --git a/src/debug.hh b/src/debug.hh index 5f21d84c..26b94820 100644 --- a/src/debug.hh +++ b/src/debug.hh @@ -6,7 +6,7 @@ namespace Kakoune { -void write_debug(const String& str); +void write_debug(StringView str); }