XMLResource *xmlresource = XMLResource::get_instance();
PSclModifierDecoration modifierDecorationTable = xmlresource->get_modifier_decoration_table();
if (modifierDecorationTable == NULL) {
- LOGW("Error. modifier decoration table is NULL");
+ LOGW("Error. modifier decoration table is NULL\n");
return 0;
}
XMLResource *xmlresource = XMLResource::get_instance();
if (xmlresource == NULL) {
- LOGW("Error: failed to get xmlresource instance.");
+ LOGW("Error: failed to get xmlresource instance.\n");
return 0;
}
SclNinePatchInfo* ninePatchInfoTable = xmlresource->get_nine_patch_list();
if (ninePatchInfoTable == NULL) {
- LOGW("Warning: nine patch list is null");
+ LOGW("Warning: nine patch list is null\n");
return 0;
}
#ifdef __SCL_TXT_DEBUG
expand_storage() {
unsigned int _new_size = (unsigned int)(m_capability + __RE_NEW_LENGTH__);
if (_new_size > (unsigned int)__MAX_NEW_SIZE__) {
- LOGW("expand_storage failed: size is limited to %d", __MAX_NEW_SIZE__);
+ LOGW("expand_storage failed: size is limited to %d\n", __MAX_NEW_SIZE__);
return;
}
char* _p = new char[_new_size];
if (_p == NULL) {
- LOGW("expand_storage error");
+ LOGW("expand_storage error\n");
return;
}
memset(_p, 0x00, _new_size);