Skip to content

Commit 402f2ad

Browse files
committed
format code
1 parent 97a266c commit 402f2ad

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/common/media_io.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,8 @@ bool load_sd_image_from_file(sd_image_t* image,
683683
if (image->data == nullptr) {
684684
return false;
685685
}
686-
image->width = width;
687-
image->height = height;
686+
image->width = width;
687+
image->height = height;
688688
image->channel = expected_channel;
689689
return true;
690690
}

examples/common/resource_owners.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ class SDImageOwner {
104104
free(image_.data);
105105
image_.data = nullptr;
106106
}
107-
image_.width = 0;
108-
image_.height = 0;
107+
image_.width = 0;
108+
image_.height = 0;
109109
image_.channel = 0;
110110
return &image_;
111111
}

0 commit comments

Comments
 (0)