From fdbfb5aa3c97e4d90edd870e0b38f27d07385ed6 Mon Sep 17 00:00:00 2001 From: brad Date: Fri, 3 Dec 2004 00:04:09 +0000 Subject: [PATCH] trivial comment change --- msvc/exivsimple/exivsimple.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msvc/exivsimple/exivsimple.cpp b/msvc/exivsimple/exivsimple.cpp index 06d588ec..f000115d 100644 --- a/msvc/exivsimple/exivsimple.cpp +++ b/msvc/exivsimple/exivsimple.cpp @@ -168,7 +168,7 @@ EXIVSIMPLE_API int ModifyMeta(HIMAGE img, const char *key, const char *val, DllT Exiv2::ExifKey exifKey(key); rc = 1; - // No way to get value type for exif... alwayst string?? + // No way to get value type for exif... string is the most common if (type == invalidTypeId) type = asciiString; Exiv2::Value::AutoPtr value = Exiv2::Value::create((Exiv2::TypeId)type); @@ -227,7 +227,7 @@ EXIVSIMPLE_API int AddMeta(HIMAGE img, const char *key, const char *val, DllType Exiv2::ExifKey exifKey(key); rc = 1; - // No way to get value type for exif... alwayst string?? + // No way to get value type for exif... string is the most common if (type == invalidTypeId) type = asciiString; Exiv2::Value::AutoPtr value = Exiv2::Value::create((Exiv2::TypeId)type);