From 785cdb0114f8cf534ef93e413e49fbfb62521a67 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Fri, 2 Apr 2004 23:34:16 +0000 Subject: use EXIT_SUCCESS and EXIT_FAILURE git-svn-id: https://svn.musicpd.org/mpd/trunk@591 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/interface.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/interface.c') diff --git a/src/interface.c b/src/interface.c index 79445c380..0689e9319 100644 --- a/src/interface.c +++ b/src/interface.c @@ -418,25 +418,25 @@ void initInterfaces() { interface_timeout = strtol((getConf())[CONF_CONNECTION_TIMEOUT],&test,10); if(*test!='\0' || interface_timeout<=0) { ERROR("connection timeout \"%s\" is not a positive integer\n",(getConf())[CONF_CONNECTION_TIMEOUT]); - exit(-1); + exit(EXIT_FAILURE); } interface_max_connections = strtol((getConf())[CONF_MAX_CONNECTIONS],&test,10); if(*test!='\0' || interface_max_connections<=0) { ERROR("max connections \"%s\" is not a positive integer\n",(getConf())[CONF_MAX_CONNECTIONS]); - exit(-1); + exit(EXIT_FAILURE); } interface_max_command_list_size = strtoll((getConf())[CONF_MAX_COMMAND_LIST_SIZE],&test,10); if(*test!='\0' || interface_max_command_list_size<=0) { ERROR("max command list size \"%s\" is not a positive integer\n",(getConf())[CONF_MAX_COMMAND_LIST_SIZE]); - exit(-1); + exit(EXIT_FAILURE); } interface_max_output_buffer_size = strtoll((getConf())[CONF_MAX_OUTPUT_BUFFER_SIZE],&test,10); if(*test!='\0' || interface_max_output_buffer_size<=0) { ERROR("max output buffer size \"%s\" is not a positive integer\n",(getConf())[CONF_MAX_OUTPUT_BUFFER_SIZE]); - exit(-1); + exit(EXIT_FAILURE); } interface_max_command_list_size*=1024; -- cgit v1.2.3