From: malaterre Date: Thu, 28 Oct 2004 19:58:05 +0000 (+0000) Subject: ENH: Fix a warning %n should be a pointer to an int. X-Git-Tag: Version0.6.bp~30 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=28e76d86ce971b7ec498dddd1890c9eadfef3d8c;hp=c77dd6febbf12b5b0d5401008ced0c575b61a5f7;p=gdcm.git ENH: Fix a warning %n should be a pointer to an int. --- diff --git a/src/gdcmException.cxx b/src/gdcmException.cxx index 375820b4..ee39112f 100644 --- a/src/gdcmException.cxx +++ b/src/gdcmException.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmException.cxx,v $ Language: C++ - Date: $Date: 2004/10/12 04:35:46 $ - Version: $Revision: 1.20 $ + Date: $Date: 2004/10/28 19:58:05 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -81,7 +81,8 @@ std::string Exception::getName() const throw() try { #ifdef __GNUC__ // GNU C++ compiler class name demangling - unsigned int nested = 1, i, nb, offset; + unsigned int nested = 1, i, nb; + int offset; std::string one; std::string name;