Skip to content

Commit 7f845f9

Browse files
committed
Update MicroExif.h
1 parent 67ae3d9 commit 7f845f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ExifBulider/MicroExif.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ class ExifBuilder {
172172
vec.push_back((value >> 16) & 0xFF);
173173
vec.push_back((value >> 8) & 0xFF);
174174
vec.push_back(value & 0xFF);
175-
} else {
175+
}
176+
else {
176177
vec.push_back(value & 0xFF);
177178
vec.push_back((value >> 8) & 0xFF);
178179
vec.push_back((value >> 16) & 0xFF);

0 commit comments

Comments
 (0)