Cleanup: style

This commit is contained in:
Campbell Barton 2015-02-01 04:19:43 +11:00
parent 5ac7e23e88
commit 595675ea7a
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ bool IMB_metadata_get_field(struct ImBuf *img, const char *key, char *field, con
prop = IDP_GetPropertyFromGroup(img->metadata ,key);
if(prop && prop->type == IDP_STRING){
if (prop && prop->type == IDP_STRING) {
BLI_strncpy(field, IDP_String(prop), len);
retval = true;
}

View File

@ -403,7 +403,7 @@ int imb_savepng(struct ImBuf *ibuf, const char *name, int flags)
int num_text = 0;
for (prop = ibuf->metadata->data.group.first; prop; prop = prop->next) {
if (prop->type == IDP_STRING){
if (prop->type == IDP_STRING) {
num_text++;
}
}
@ -411,7 +411,7 @@ int imb_savepng(struct ImBuf *ibuf, const char *name, int flags)
metadata = MEM_callocN(num_text * sizeof(png_text), "png_metadata");
num_text = 0;
for (prop = ibuf->metadata->data.group.first; prop; prop = prop->next) {
if (prop->type == IDP_STRING){
if (prop->type == IDP_STRING) {
metadata[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
metadata[num_text].key = prop->name;
metadata[num_text].text = IDP_String(prop);