summaryrefslogtreecommitdiff
path: root/Tests/BundleUtilities/testbundleutils1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BundleUtilities/testbundleutils1.cpp')
-rw-r--r--Tests/BundleUtilities/testbundleutils1.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/Tests/BundleUtilities/testbundleutils1.cpp b/Tests/BundleUtilities/testbundleutils1.cpp
index 23d3cbd2e7..3eb6a44bfa 100644
--- a/Tests/BundleUtilities/testbundleutils1.cpp
+++ b/Tests/BundleUtilities/testbundleutils1.cpp
@@ -16,18 +16,15 @@ int main(int, char**)
#if defined(WIN32)
HANDLE lib = LoadLibraryA("module1.dll");
- if(!lib)
- {
+ if (!lib) {
printf("Failed to open module1\n");
}
#else
void* lib = dlopen("module1.so", RTLD_LAZY);
- if(!lib)
- {
+ if (!lib) {
printf("Failed to open module1\n%s\n", dlerror());
}
#endif
-
return lib == 0 ? 1 : 0;
}