Blame SOURCES/0002-c++-src-ColumnPrinter.cc.patch

20b247
--- orc-rel-release-1.6.6/c++/src/ColumnPrinter.cc.orig	2021-09-20 09:01:01.284286634 -0400
20b247
+++ orc-rel-release-1.6.6/c++/src/ColumnPrinter.cc	2021-09-20 09:06:30.748470566 -0400
20b247
@@ -631,7 +631,7 @@
20b247
     if (hasNulls && !notNull[rowId]) {
20b247
       writeString(buffer, "null");
20b247
     } else {
20b247
-      const time_t timeValue = data[rowId] * 24 * 60 * 60;
20b247
+      const time_t timeValue = static_cast<time_t>(data[rowId] * 24 * 60 * 60);
20b247
       struct tm tmValue;
20b247
       gmtime_r(&timeValue, &tmValue);
20b247
       char timeBuffer[11];