diff options
Diffstat (limited to '')
-rw-r--r-- | utils.vala | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ class Utils { public static string get_shell() { - var env_shell = Environment.get_variable("SHELL"); - if (env_shell != null && env_shell.length > 0){ + unowned var env_shell = Environment.get_variable("SHELL"); + if (env_shell != null && env_shell.length > 0) { return env_shell; } |