Changeset a77d27 in git for dyn_modules/bigintm/bigintm.cc


Ignore:
Timestamp:
Feb 22, 2013, 11:22:18 AM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
662ecef20cd3a177f8ca45a1d63a12483ea4b07e
Parents:
21b9ef8e44d99ebb4e5d2eaf4fdf54444c59cc6b
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-02-22 11:22:18+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-02-22 11:24:00+01:00
Message:
Warning elimination (cast of int to void*)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/bigintm/bigintm.cc

    r21b9ef ra77d27  
    219219      {
    220220        number n2=n_Init((int)(long)a2->Data(), coeffs_BIGINT);
    221         res->data=(void *) n_Equal(n1,n2, coeffs_BIGINT);
     221        res->data=(void *) (long) n_Equal(n1,n2, coeffs_BIGINT);
    222222        res->rtyp= INT_CMD;
    223223        return FALSE;
     
    226226      {
    227227        number n2=(number)a2->Data();
    228         res->data=(void *) n_Equal(n1,n2, coeffs_BIGINT);
     228        res->data=(void *) (long) n_Equal(n1,n2, coeffs_BIGINT);
    229229        res->rtyp= INT_CMD;
    230230        return FALSE;
Note: See TracChangeset for help on using the changeset viewer.