Fix for #26; forgot the type specifier after LI (since the LI macro now requires a type after it, so it works for all types)

#15 (standardized output system using cout) will solve all these silly printf problems.
This commit is contained in:
Ryan Curtin
2010-04-25 18:13:51 +00:00
parent 9349cc501a
commit 93a2e1d6ad
+1 -1
View File
@@ -264,7 +264,7 @@ success_t DatasetInfo::InitFromCsv(TextLineReader *reader,
} else {
for (index_t i = 0; i < headers.size(); i++) {
String name;
name.InitSprintf("feature%"LI, i);
name.InitSprintf("feature%"LI"d", i);
features_.PushBack().InitContinuous(name);
}
}