From 573a5de04938fcc63fe4bffaa84f0cba68c8cff1 Mon Sep 17 00:00:00 2001 From: Andrej Mitrovic Date: Tue, 29 Jan 2013 18:17:14 +0100 Subject: [PATCH] Fix Win32 build. --- rdmd.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdmd.d b/rdmd.d index fb5a3ce2d8..cbfe91ca05 100644 --- a/rdmd.d +++ b/rdmd.d @@ -90,7 +90,7 @@ int main(string[] args) version(Windows) { // invoke browser that is associated with the http protocol - ShellExecuteA(null, "open", page, null, null, SW_SHOWNORMAL); + ShellExecuteA(null, "open", page.toStringz, null, null, SW_SHOWNORMAL); } else {