From 28e76d86ce971b7ec498dddd1890c9eadfef3d8c Mon Sep 17 00:00:00 2001 From: malaterre Date: Thu, 28 Oct 2004 19:58:05 +0000 Subject: [PATCH] ENH: Fix a warning %n should be a pointer to an int. --- src/gdcmException.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 2.45.1