Changeset b1e0d72 in git


Ignore:
Timestamp:
May 4, 1998, 1:36:45 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
16262b74d0238fc697ef8ca51d05a0cce09087c6
Parents:
82afd9b2fcc2022ff5fc632b25083237b43c5e04
Message:
* do not accept random seed of 0


git-svn-id: file:///usr/local/Singular/svn/trunk@1587 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/tesths.cc

    r82afd9b rb1e0d72  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: tesths.cc,v 1.36 1998-04-28 09:53:19 pohl Exp $ */
     4/* $Id: tesths.cc,v 1.37 1998-05-04 11:36:45 obachman Exp $ */
    55
    66/*
     
    375375          errno = 0;
    376376          siRandomStart = strtol(optarg, NULL, 10);
    377           if (errno)
     377          if (errno || siRandomStart == 0)
    378378          {
    379379            printf("%s: `%s' invalid integer argument for option `--%s'\n", argv[0], optarg, LON_RANDOM);
Note: See TracChangeset for help on using the changeset viewer.