aboutsummaryrefslogtreecommitdiff
path: root/test/settings/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/settings/main.cpp')
-rw-r--r--test/settings/main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/settings/main.cpp b/test/settings/main.cpp
index 0ceb42715..cf2b16b00 100644
--- a/test/settings/main.cpp
+++ b/test/settings/main.cpp
@@ -12,6 +12,11 @@
#include <fstream>
#include <iostream>
+int numberfn()
+{
+ return 0x5a;
+}
+
int
main(int argc, char const *argv[])
{
@@ -66,5 +71,5 @@ main(int argc, char const *argv[])
std::cout << "This message should go to standard out.\n";
outfile.close();
- return 0;
+ return numberfn();
}