summaryrefslogtreecommitdiff
path: root/libmwaw/libmwaw-0.1.9.patch.1
blob: e5eb6da8ecf8c7387961faf86ba09e72b249364e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/src/lib/MWAWTable.hxx
+++ b/src/lib/MWAWTable.hxx
@@ -117,7 +117,11 @@ protected:
               - c2.m_cell->box().size()[m_coord];
       if (diffF < 0) return true;
       if (diffF > 0) return false;
-      return ssize_t(c1.m_cell) < ssize_t(c2.m_cell);
+#ifdef _WIN64
+      return __int64(c1.m_cell) < __int64(c2.m_cell);
+#else
+      return long(c1.m_cell) < long(c2.m_cell);
+#endif
     }
 
     //! the coord to compare