From 0402f94e36a5d62ab9df3d357f0e1f7ea9512318 Mon Sep 17 00:00:00 2001 From: FabioLolix Date: Wed, 19 Aug 2020 18:30:11 +0200 Subject: [PATCH] fix build --- src/Gtk/TermBox.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/TermBox.vala b/src/Gtk/TermBox.vala index 0c7b37c..5f50f81 100755 --- a/src/Gtk/TermBox.vala +++ b/src/Gtk/TermBox.vala @@ -255,7 +255,7 @@ public class TermBox : Gtk.Box { #else - term.feed_child(cmd.to_utf8()); + term.feed_child((uint8[])cmd.to_utf8()); #endif } -- 2.28.0