UErrorCode status = U_ZERO_ERROR;
int success = 0;
- if (! xml_node)
+ if (!xml_node)
{
printf("Could not parse XML config file '%s' \n",
config.conffile);
- exit (1);
+ exit(1);
}
config.chain = icu_chain_xml_config(xml_node, 1, &status);
else {
printf("Could not set up ICU chain from config file '%s' \n",
config.conffile);
- exit (1);
+ exit(1);
}
if (p_config->xmloutput)
exit(3);
#endif /* YAZ_HAVE_ICU */
- return(0);
+ return 0;
}