From 009d189768a2a31e42c47ed24c79cf6461bf336f Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 12 May 2025 17:30:38 +0900 Subject: [PATCH] Linux/macOS: Fix build error cause by missing conversion --- src/Main/GraphicUserInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main/GraphicUserInterface.cpp b/src/Main/GraphicUserInterface.cpp index 1f608e20..f9f4a321 100644 --- a/src/Main/GraphicUserInterface.cpp +++ b/src/Main/GraphicUserInterface.cpp @@ -1387,7 +1387,7 @@ namespace VeraCrypt #endif string preferredLang = LangString.GetPreferredLang(); // Use preferred language only if it has translated documentation - if (!HasTranslatedDocumentation (preferredLang)) + if (!HasTranslatedDocumentation (preferredLang.c_str())) { preferredLang = "en"; }