summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2018-04-29 21:08:46 -0400
committerHubert Figuière <hub@figuiere.net>2018-04-30 00:12:39 -0400
commit50e57c3fd6dafe8e1e86eb9e4af1f63bf4af76e4 (patch)
tree981dd177e68d8e4671cf153edefaff9f84ac7c29 /tools
parentadadd3726ce616161264039634aa4d3c89506995 (diff)
ordiag: fix a warning in the file type switch and add missing ones
Diffstat (limited to 'tools')
-rw-r--r--tools/ordiag.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/ordiag.cpp b/tools/ordiag.cpp
index 1bdb039..5220370 100644
--- a/tools/ordiag.cpp
+++ b/tools/ordiag.cpp
@@ -170,6 +170,9 @@ public:
case OR_RAWFILE_TYPE_NEF:
return "Nikon NEF";
break;
+ case OR_RAWFILE_TYPE_NRW:
+ return "Nikon NRW";
+ break;
case OR_RAWFILE_TYPE_MRW:
return "Minolta MRW";
break;
@@ -194,6 +197,9 @@ public:
case OR_RAWFILE_TYPE_RAF:
return "FujiFilm RAF";
break;
+ case OR_RAWFILE_TYPE_TIFF:
+ return "TIFF";
+ break;
}
return "Unknown";
}