git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@418 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2006-01-20 02:02:03 +00:00
parent 1e04eb13b5
commit 0ea203849f
43 changed files with 3940 additions and 4103 deletions

View File

@@ -31,8 +31,7 @@
*/
#include <switch.h>
int main(int argc, char *argv[])
{
int main(int argc, char *argv[]) {
char *err = NULL;
switch_event *event;
@@ -48,7 +47,7 @@ int main(int argc, char *argv[])
}
}
if (err) {
if(err) {
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Error: %s", err);
exit(-1);
}
@@ -76,3 +75,5 @@ int main(int argc, char *argv[])
return 0;
}