1 --- einstein-2.0/convert.h 2005-08-14 04:40:58.000000000 +0200
2 +++ convert.h 2009-05-24 17:13:35.941186331 +0200
9 #include "exceptions.h"
11 --- einstein-2.0/unicode.h 2005-08-14 04:40:58.000000000 +0200
12 +++ unicode.h 2009-05-24 17:13:22.227852925 +0200
21 --- einstein-2.0/formatter.cpp 2005-08-14 04:40:58.000000000 +0200
22 +++ formatter.cpp 2009-06-26 07:40:23.854480611 +0200
24 if ((c.type == INT_ARG) || (c.type == STRING_ARG) ||
25 (c.type == FLOAT_ARG) || (c.type == DOUBLE_ARG))
27 - int no = (int)c.data;
28 + long int no = (long int)c.data;
29 args[no - 1] = c.type;
36 - no = (int)cmd->data - 1;
37 + no = (long int)cmd->data - 1;
38 if (no < (int)argValues.size())
39 s += argValues[no]->format(cmd);