Ignore:
Timestamp:
Feb 7, 2009, 10:50:34 PM (17 years ago)
Author:
cmv
Message:

char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsblkrw.h

    r3493 r3572  
    159159      string msg = "FitsBlockRW<std::string>::WriteColumnData() Error: " ;
    160160      msg += buff;
    161       sprintf(buff," kk=%ld",kk);  msg += buff;
     161      sprintf(buff," kk=%ld",(long)kk);  msg += buff;
    162162      throw FitsIOException(msg);
    163163    }
     
    187187      string msg = "FitsBlockRW<std::string>::ReadColumnData() Error: " ;
    188188      msg += buff;
    189       sprintf(buff," kk=%ld",kk);  msg += buff;
     189      sprintf(buff," kk=%ld",(long)kk);  msg += buff;
    190190      throw FitsIOException(msg);
    191191    }
Note: See TracChangeset for help on using the changeset viewer.