From ba2770426fd19ee9a198c4c08533f314c2eeb0be Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Sat, 3 Jul 2004 06:46:23 +0000 Subject: [PATCH] Bugfix: added missing break --- src/exiv2.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/exiv2.cpp b/src/exiv2.cpp index 48bae383..1edfa80c 100644 --- a/src/exiv2.cpp +++ b/src/exiv2.cpp @@ -22,13 +22,13 @@ Abstract: Command line program to display and manipulate image %Exif data File: exiv2.cpp - Version: $Name: $ $Revision: 1.10 $ + Version: $Name: $ $Revision: 1.11 $ Author(s): Andreas Huggel (ahu) History: 10-Dec-03, ahu: created */ // ***************************************************************************** #include "rcsid.hpp" -EXIV2_RCSID("@(#) $Name: $ $Revision: 1.10 $ $RCSfile: exiv2.cpp,v $") +EXIV2_RCSID("@(#) $Name: $ $Revision: 1.11 $ $RCSfile: exiv2.cpp,v $") // ***************************************************************************** // included header files @@ -266,6 +266,7 @@ int Params::option(int opt, const std::string& optarg, int optopt) rc = 1; break; } + break; case Action::extract: std::cerr << progname() << ": Ignoring surplus option -e" << optarg << "\n";