Skip to content

Commit

Permalink
fix: compiler warnings: 64bit stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes14 committed Dec 7, 2012
1 parent 8c676ad commit 6554ca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Singular/extra.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3179,9 +3179,9 @@ static BOOLEAN jjEXTENDED_SYSTEM(leftv res, leftv h)
if (rIsSCA(r))
{
if(strcmp(sys_cmd, "AltVarStart") == 0)
res->data = (void*)scaFirstAltVar(r);
res->data = (void*)(long)scaFirstAltVar(r);
else
res->data = (void*)scaLastAltVar(r);
res->data = (void*)(long)scaLastAltVar(r);
return FALSE;
}

Expand Down

0 comments on commit 6554ca4

Please sign in to comment.