sal/osl/unx/file_url.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1ffc2b44e4051834268f39bd92d9c59d368973e3 Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Jan 6 21:04:16 2026 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Jan 7 08:06:21 2026 +0100 Actually use "..."_tstr ...after 6fce450b8a66d7e98a4d39528f8591184277e9fa "Introduce "..."_tstr as a companion to "..."_ostr/u"..."_ustr in template code" had introduced it for exactly this piece of code Change-Id: I767a9f39456d6c58c5ac0478110a0c66434b0e54 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196626 Reviewed-by: Stephan Bergmann <[email protected]> Tested-by: Jenkins diff --git a/sal/osl/unx/file_url.cxx b/sal/osl/unx/file_url.cxx index ed61289d339d..2c470e1011af 100644 --- a/sal/osl/unx/file_url.cxx +++ b/sal/osl/unx/file_url.cxx @@ -260,7 +260,7 @@ template<typename T> oslFileError getSystemPathFromFileUrl( // Handle empty path: if (i == url.getLength()) { - *path = "/"; + *path = "/"_tstr; return osl_File_E_None; } // Path must not contain %2F:
