From 4110a2389bf9728b8f0c9b216b0a5843de806e4a Mon Sep 17 00:00:00 2001 From: ppw 0 Date: Wed, 6 Dec 2023 12:16:45 +0000 Subject: [PATCH] Update file operation.vala --- ssh/operation.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh/operation.vala b/ssh/operation.vala index 4743d0a5..48a525c3 100644 --- a/ssh/operation.vala +++ b/ssh/operation.vala @@ -49,7 +49,7 @@ public abstract class Operation : GLib.Object { protected async string? operation_async(string command, string? input, Cancellable? cancellable) throws GLib.Error { - return_val_if_fail (command != null && command != "", null); + return_val_if_fail (command != null && command != "", false); // Strip the command name for logging purposes string[] args; -- GitLab