[INTERPRETER]

* BUG: Remove a debugging message.


git-svn-id: svn://localhost/gambas/trunk@7613 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2016-02-25 23:19:39 +00:00
parent 056190b68d
commit f2f26687a9

View file

@ -764,7 +764,6 @@ int DATE_diff(VALUE *date1, VALUE *date2, int period)
{
case DP_DAY:
case DP_WEEK:
fprintf(stderr, "DATE_diff: (%d %d) -> (%d %d)\n", date2->_date.date, date2->_date.time, date1->_date.date, date1->_date.time);
diff = date1->_date.date - date2->_date.date;
if (diff)
{