opnsense-ports/math/gambit/files/patch-src-labenski-src_sheet.cpp
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

14 lines
619 B
C++

--- src/labenski/src/sheet.cpp.orig 2013-06-24 11:57:48.000000000 +0200
+++ src/labenski/src/sheet.cpp 2013-06-24 12:00:50.000000000 +0200
@@ -7098,9 +7098,9 @@
wxPrintf(wxT("COUNT MISMATCH ERROR! \n"));
for (size_t n = 0; n < wxMin(ans.GetCount(), res.GetCount()); n++)
- if (ans[n] != res[n]) wxPrintf(wxT("Error in item %u\n"), n);
+ if (ans[n] != res[n]) wxPrintf(wxT("Error in item %zu\n"), n);
- wxPrintf(msg + wxT("\n"));
+ wxPrintf("%s\n", msg.ToAscii());
}
#define CSVT1(str, a1) { wxArrayString ar; ar.Add(wxT(a1)); CSV_TEST(wxT(str), ar, ParseLine(wxT(str))); }