[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34166] trunk/blender/source/blender/ blenlib/intern/fileops.c: Removed some overly agressive (and IMO pointless) "UNUSED(arg)"

Joshua Leung aligorith at gmail.com
Sat Jan 8 00:47:13 CET 2011


Revision: 34166
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=34166
Author:   aligorith
Date:     2011-01-07 23:47:12 +0000 (Fri, 07 Jan 2011)
Log Message:
-----------
Removed some overly agressive (and IMO pointless) "UNUSED(arg)"
wrappers which was breaking compiling on Windows (mingw)

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/intern/fileops.c

Modified: trunk/blender/source/blender/blenlib/intern/fileops.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/fileops.c	2011-01-07 23:36:48 UTC (rev 34165)
+++ trunk/blender/source/blender/blenlib/intern/fileops.c	2011-01-07 23:47:12 UTC (rev 34166)
@@ -218,7 +218,7 @@
 	return err;
 }
 
-int BLI_link(const char *UNUSED(file), const char *UNUSED(to)) {
+int BLI_link(const char *file, const char *to) {
 	callLocalErrorCallBack("Linking files is unsupported on Windows");
 	
 	return 1;




More information about the Bf-blender-cvs mailing list