Removed some overly agressive (and IMO pointless) "UNUSED(arg)"

wrappers which was breaking compiling on Windows (mingw)
This commit is contained in:
2011-01-07 23:47:12 +00:00
parent 46bf79fd02
commit e415798e13

View File

@@ -218,7 +218,7 @@ int BLI_copy_fileops(const char *file, const char *to) {
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;