Changeset 6554ca4 in git


Ignore:
Timestamp:
Dec 7, 2012, 2:36:49 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
2ac2935796fc44d19ee67851bc57153313ee297bec1006cbd9971c4271d05aefada775ef29d762a6
Parents:
8c676add407dd38a5206615ae14dd960bf1dae94
Message:
fix: compiler warnings: 64bit stuff
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r8c676a r6554ca4  
    31803180        {
    31813181          if(strcmp(sys_cmd, "AltVarStart") == 0)
    3182             res->data = (void*)scaFirstAltVar(r);
     3182            res->data = (void*)(long)scaFirstAltVar(r);
    31833183          else
    3184             res->data = (void*)scaLastAltVar(r);
     3184            res->data = (void*)(long)scaLastAltVar(r);
    31853185          return FALSE;
    31863186        }
Note: See TracChangeset for help on using the changeset viewer.