Changeset e813875 in git for Singular/silink.cc


Ignore:
Timestamp:
Apr 7, 2010, 4:50:59 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1bc9c40d54dd6fb1db62e53560cfc0c029e9fa06
Parents:
7249440a8b31fbbb1b4a4269cdfcf46991bd39bb
Message:
idrec -> idrec.h

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

Legend:

Unmodified
Added
Removed
  • Singular/silink.cc

    r724944 re813875  
    606606{
    607607  const char *type_str = GetIdString(h);
    608   idtyp type_id = IDTYP(h);
     608  int type_id = IDTYP(h);
    609609
    610610  if ((type_id == PACKAGE_CMD) &&(strcmp(IDID(h), "Top") == 0))
     
    653653static const char* GetIdString(idhdl h)
    654654{
    655   idtyp type = IDTYP(h);
     655  int type = IDTYP(h);
    656656
    657657  switch(type)
     
    714714static int DumpRhs(FILE *fd, idhdl h)
    715715{
    716   idtyp type_id = IDTYP(h);
     716  int type_id = IDTYP(h);
    717717
    718718  if (type_id == LIST_CMD)
Note: See TracChangeset for help on using the changeset viewer.