Fixing typos.

This commit is contained in:
Robin Mills 2021-06-24 17:49:47 +01:00
parent 739673335c
commit 6452a9ce36
2 changed files with 5 additions and 5 deletions

View File

@ -490,7 +490,7 @@ Those blocks of code are not compiled unless you define `EXIV2_DEBUG_MESSAGES`.
```bash
$ cd <exiv2dir>
$ touch src/webpimage.cpp
$ make CXXFLAGS=-DEXIV2_DEBUG_MESSAGES
$ make CXX_FLAGS=-DEXIV2_DEBUG_MESSAGES
$ bin/exiv2 ...
-- or --
$ sudo make install

View File

@ -115,10 +115,10 @@ try {
shortLong.insert("Exif.Photo.PixelXDimension");
shortLong.insert("Exif.Photo.PixelYDimension");
shortLong.insert("Exif.Photo.ImageLength");
shortLong.insert("Exif.Photo.ImageWidth);
shortLong.insert("Exif.Photo.RowsPerStrip);
shortLong.insert("Exif.Photo.StripOffsets);
shortLong.insert("Exif.Photo.StripByteCounts);
shortLong.insert("Exif.Photo.ImageWidth");
shortLong.insert("Exif.Photo.RowsPerStrip");
shortLong.insert("Exif.Photo.StripOffsets");
shortLong.insert("Exif.Photo.StripByteCounts");
auto end = exifData.end();
for (auto i = exifData.begin(); i != end; ++i) {