Changeset 180 for cpp/frams/genetics
- Timestamp:
- 03/18/14 09:11:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genoconv.cpp
r150 r180 15 15 #include "genoconv.h" 16 16 #include <frams/util/multimap.h> 17 #include <common/stl-util.h> 17 18 18 19 /////////////////////////////////////////////////////////////////////////// … … 189 190 if (!tmp.len()) 190 191 { 191 char t[100]; 192 sprintf(t, "f%c->f%c conversion failed (%s)", gk->in_format, gk->out_format, gk->name); 193 return Geno(0, 0, 0, t); 192 string t=ssprintf("f%c->f%c conversion failed (%s)", gk->in_format, gk->out_format, gk->name); 193 return Geno(0, 0, 0, t.c_str()); 194 194 } 195 195 if (mapavail)
Note: See TracChangeset
for help on using the changeset viewer.