Changeset 4f27bf in git


Ignore:
Timestamp:
Oct 24, 2013, 3:08:42 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
319eab5422b663cf987a25ed055f76e33b2b9751
Parents:
5d84a427601ff7bebce86b099988117b8b5150f2
Message:
fix: compiler warnings
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/feOpt.cc

    r5d84a4 r4f27bf  
    200200      return "option value needs to be an integer";
    201201
    202     feOptSpec[opt].value = (void*) optarg;
     202    feOptSpec[opt].value = (void*)(long) optarg;
    203203  }
    204204  return feOptAction(opt);
  • Singular/walk.cc

    r5d84a4 r4f27bf  
    21852185        PrintS("\n// ** OVERFLOW in \"MwalkNextWeightCC\": ");
    21862186        mpz_out_str( stdout, 10, vec[j]);
    2187         PrintS(" is greater than 2147483647 (max. integer representation)");
    2188         Print("\n//  So vector[%d] := %d is wrong!!\n",j+1, vec[j]);
     2187        PrintS(" is greater than 2147483647 (max. integer representation)\n");
     2188        //Print("//  So vector[%d] := %d is wrong!!\n",j+1, vec[j]);// vec[j] is mpz_t
    21892189      }
    21902190    }
Note: See TracChangeset for help on using the changeset viewer.