Changeset c6c86b in git


Ignore:
Timestamp:
Aug 22, 2008, 11:35:08 AM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
ffdeea5241aeda579058070f60c8f42e49c237b0
Parents:
241cc911c4f3eaf5b79c7df9d0e3feb5bce70a2d
Message:
*hannes: error mesage


git-svn-id: file:///usr/local/Singular/svn/trunk@11026 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
factory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_char.cc

    r241cc9 rc6c86b  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_char.cc,v 1.10 2008-08-18 11:19:33 Singular Exp $ */
     2/* $Id: cf_char.cc,v 1.11 2008-08-22 09:35:08 Singular Exp $ */
    33
    44#include <config.h>
     
    4141        ff_big = c > cf_getSmallPrime( cf_getNumSmallPrimes()-1 );
    4242#ifdef SINGULAR
    43         if (!errorreported && (c > 536870909)) WerrorS("characteristic too large(max is 2^29)");
     43        if (!errorreported && (c > 536870909)) Werror("characteristic %d is too large(max is 2^29)",c);
    4444#endif
    4545        ff_setprime( c );
  • factory/singext.h

    r241cc9 rc6c86b  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: singext.h,v 1.9 2008-08-19 13:10:55 Singular Exp $ */
     2/* $Id: singext.h,v 1.10 2008-08-22 09:35:08 Singular Exp $ */
    33
    44#ifndef INCL_SINGEXT_H
     
    2121extern int errorreported;
    2222extern "C" void  WerrorS(const char *s);
     23extern "C" void  Werror(const char *s, ...);
    2324
    2425// used to open the GF(q) tables from Singular
Note: See TracChangeset for help on using the changeset viewer.