aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/latency_test.cpp
diff options
context:
space:
mode:
authorMoritz Fischer <moritz.fischer@ettus.com>2012-10-18 15:33:07 -0700
committerJosh Blum <josh@joshknows.com>2012-10-26 14:00:29 -0700
commit171e46cebe9c661246d6e313a40f38822d90bbb7 (patch)
treeac9c7486911a22850492219373e6acfdf99e4b2e /host/examples/latency_test.cpp
parent99c9949eb1bbc9f33c838b43890754c816a23033 (diff)
downloaduhd-171e46cebe9c661246d6e313a40f38822d90bbb7.tar.gz
uhd-171e46cebe9c661246d6e313a40f38822d90bbb7.tar.bz2
uhd-171e46cebe9c661246d6e313a40f38822d90bbb7.zip
examples & utils: return EXIT_FAILURE and EXIT_SUCCESS respectively
instead of 0 and 1.
Diffstat (limited to 'host/examples/latency_test.cpp')
-rw-r--r--host/examples/latency_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/latency_test.cpp b/host/examples/latency_test.cpp
index 518d2383a..461ac9bf8 100644
--- a/host/examples/latency_test.cpp
+++ b/host/examples/latency_test.cpp
@@ -164,5 +164,5 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
**************************************************************/
std::cout << boost::format("\nACK %d, UNDERFLOW %d, TIME_ERR %d, other %d")
% ack % underflow % time_error % other << std::endl;
- return 0;
+ return EXIT_SUCCESS;
}