rename _log_error to log_error and get rid of the cumbersome #define

This commit is contained in:
Enno Rehling 2012-05-16 16:52:01 -07:00
parent 99fddaf81b
commit ecac1adb1b

View file

@ -149,13 +149,13 @@ int main(int argc, char **argv)
err = eressea_init();
if (err) {
log_error(("initialization failed with code %d\n", err));
log_error("initialization failed with code %d\n", err);
return err;
}
err = eressea_run(luafile, entry_point);
if (err) {
log_error(("server execution failed with code %d\n", err));
log_error("server execution failed with code %d\n", err);
return err;
}