From 34481024a6435334ebaa23cb881d920bb4b587d3 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 8 Feb 2025 15:45:51 -0500 Subject: [PATCH] 64 bit compat --- terminalemulator.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminalemulator.d b/terminalemulator.d index 35cab08..8d40967 100644 --- a/terminalemulator.d +++ b/terminalemulator.d @@ -3544,7 +3544,7 @@ version(use_libssh2) { throw new Exception("fingerprint"); import std.string : toStringz; - if(auto err = libssh2_userauth_publickey_fromfile_ex(session, username.ptr, username.length, toStringz(keyFile ~ ".pub"), toStringz(keyFile), null)) + if(auto err = libssh2_userauth_publickey_fromfile_ex(session, username.ptr, cast(int) username.length, toStringz(keyFile ~ ".pub"), toStringz(keyFile), null)) throw new Exception("auth");