summaryrefslogtreecommitdiff
path: root/tests/glibmm_ustring_format
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2011-02-24 13:45:00 +0100
committerMurray Cumming <murrayc@murrayc.com>2011-02-24 13:45:00 +0100
commitab38520b659d5d66d19eb83fb80c41ddc8391eb8 (patch)
treef99758b8cb9aa6ae6fc5a774371cff836d9c249e /tests/glibmm_ustring_format
parent6edb045a2ec86f67e8a0b3a217c00be6336c05d8 (diff)
downloadglibmm-ab38520b659d5d66d19eb83fb80c41ddc8391eb8.tar.gz
tests: Use EXIT_* for clarity.
* tests/*.cc: Use EXIT_SUCCESS rather than 0 because I think that is clearer.
Diffstat (limited to 'tests/glibmm_ustring_format')
-rw-r--r--tests/glibmm_ustring_format/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/glibmm_ustring_format/main.cc b/tests/glibmm_ustring_format/main.cc
index 1ed73de6..3f44a531 100644
--- a/tests/glibmm_ustring_format/main.cc
+++ b/tests/glibmm_ustring_format/main.cc
@@ -26,5 +26,5 @@ int main(int, char**)
//This threw an exception before we added a ustring::FormatStream::stream(char*) overload.
Glib::ustring::format(cptr);
- return 0;
+ return EXIT_SUCCESS;
}