Merge branch 'new_api_patch' of https://github.com/Impyy/toxcore into new_api

This commit is contained in:
irungentoo 2015-03-15 18:41:00 -04:00
commit 08585e5b60
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -75,6 +75,7 @@ struct Tox_Options *tox_options_new(TOX_ERR_OPTIONS_NEW *error)
struct Tox_Options *options = calloc(sizeof(struct Tox_Options), 1);
if (options) {
tox_options_default(options);
SET_ERROR_PARAMETER(error, TOX_ERR_OPTIONS_NEW_OK);
return options;
}