summaryrefslogtreecommitdiff
path: root/unoidl/source
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source')
-rw-r--r--unoidl/source/unoidl-check.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/unoidl/source/unoidl-check.cxx b/unoidl/source/unoidl-check.cxx
index ff84f52c655c..f1264d23bbb1 100644
--- a/unoidl/source/unoidl-check.cxx
+++ b/unoidl/source/unoidl-check.cxx
@@ -537,12 +537,13 @@ void checkMap(
}
if (k->name != l->name) {
std::cerr
- << "Warning: interface type " << name
+ << "interface type " << name
<< " direct method " << i->name
<< " parameter #"
<< k - i->parameters.begin() + 1
<< " changed name from " << k->name
<< " to " << l->name << std::endl;
+ std::exit(EXIT_FAILURE);
}
}
}