From 063ff67fcdd6976be214b6fb519d45c650d5498c Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Fri, 7 Mar 2025 00:59:25 +0100 Subject: Fixing a couple of warnings. --- fluid/shell_command.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fluid/shell_command.cxx') diff --git a/fluid/shell_command.cxx b/fluid/shell_command.cxx index 97c49f462..a6c49c823 100644 --- a/fluid/shell_command.cxx +++ b/fluid/shell_command.cxx @@ -365,7 +365,7 @@ void shell_pipe_cb(FL_SOCKET, void*) { static void expand_macro(std::string &cmd, const std::string ¯o, const std::string &content) { for (int i=0;;) { i = cmd.find(macro, i); - if (i==std::string::npos) break; + if (i==(int)std::string::npos) break; cmd.replace(i, macro.size(), content); } } -- cgit v1.2.3