This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit 3241dc6fa1e7db7c3c6f8811e843d487d33dd4e9
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Mon May 26 21:16:58 2025 +0100
backend - dont print null dst when not provided for some ops
---
src/backends/default/open.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/backends/default/open.c b/src/backends/default/open.c
index 118d9b8..69644c2 100644
--- a/src/backends/default/open.c
+++ b/src/backends/default/open.c
@@ -1290,7 +1290,8 @@ _op_run(const char *op, Eina_List *files, const char *dst)
eina_strbuf_reset(buf);
EINA_LIST_FOREACH(files, l, s)
{
- fprintf(stderr, "OP [%s] -> [%s]\n", s, dst);
+ if (dst) fprintf(stderr, "OP [%s] -> [%s]\n", s, dst);
+ else fprintf(stderr, "OP [%s]\n", s);
eina_strbuf_append(buf, "src=""
str = escape(s);
eina_strbuf_append(buf, str);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.