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 58d95661080b7fa5fae87bcaba8fa2ed55e60dca
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Tue May 21 18:03:57 2024 +0100

    mknod - use rdev not dev!
---
 src/backends/default/fs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backends/default/fs.c b/src/backends/default/fs.c
index 491037e..9fb37a9 100644
--- a/src/backends/default/fs.c
+++ b/src/backends/default/fs.c
@@ -363,7 +363,7 @@ fs_cp_rm(const char *src, const char *dst, Eina_Bool report_err, Eina_Bool cp,
     {
       if (cp)
         {
-          if (mknod(dst, st.st_mode, st.st_dev) < 0)
+          if (mknod(dst, st.st_mode, st.st_rdev) < 0)
             { // soft error? ignore?
             }
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to