Code

long is not always the same size from arch to arch: causing amd64 svg/test-svg failures
authorkeescook <keescook@users.sourceforge.net>
Sat, 13 Jan 2007 07:56:52 +0000 (07:56 +0000)
committerkeescook <keescook@users.sourceforge.net>
Sat, 13 Jan 2007 07:56:52 +0000 (07:56 +0000)
src/svg/stringstream.cpp

index cdb29c865e7cb7581c540f08c5a07faaf69dcaa0..65c01e7b687b3332f138f5ee9f941643687b663c 100644 (file)
@@ -20,7 +20,7 @@ operator<<(Inkscape::SVGOStringStream &os, float d)
 {
     /* Try as integer first. */
     {
-        long const n = long(d);
+        int const n = int(d);
         if (d == n) {
             os << n;
             return os;
@@ -41,7 +41,7 @@ operator<<(Inkscape::SVGOStringStream &os, double d)
 {
     /* Try as integer first. */
     {
-        long const n = long(d);
+        int const n = int(d);
         if (d == n) {
             os << n;
             return os;