[Bf-blender-cvs] [f01617bb157] master: Fix unused variable warning on Linux

Julian Eisel noreply at git.blender.org
Mon Feb 24 14:47:23 CET 2020


Commit: f01617bb157e76a7c70daafdbee6ab16395f737b
Author: Julian Eisel
Date:   Mon Feb 24 14:46:07 2020 +0100
Branches: master
https://developer.blender.org/rBf01617bb157e76a7c70daafdbee6ab16395f737b

Fix unused variable warning on Linux

===================================================================

M	source/blender/blenlib/intern/storage.c

===================================================================

diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 04b3e8abca2..d1d8c4fa2e0 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -251,6 +251,7 @@ eFileAttributes BLI_file_attributes(const char *path)
 #endif
 
 #ifdef __linux__
+  UNUSED_VARS(path);
 
   /* TODO:
    * If Immutable set FILE_ATTR_READONLY



More information about the Bf-blender-cvs mailing list