Changeset 27936c in git


Ignore:
Timestamp:
Dec 13, 1999, 6:52:12 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
292c5eb94f27dc588c1f038f1948e6091881887a
Parents:
53c79709fa5f6c42b54917c64b7ca1a3e4ed736b
Message:
*hannes: ALIGN_* fix


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

Legend:

Unmodified
Added
Removed
  • Singular/mmalloc.c

    r53c797 r27936c  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: mmalloc.c,v 1.20 1999-11-15 17:20:22 obachman Exp $ */
     4/* $Id: mmalloc.c,v 1.21 1999-12-13 17:52:12 Singular Exp $ */
    55
    66/*
     
    607607  void* res;
    608608#ifdef ALIGN_8
    609   if (newsize % 8 != 0) newsize = newsize + 8 - (size % 8);
    610   if (oldsize % 8 != 0) oldsize = oldsize + 8 - (size % 8);
     609  if (newsize % 8 != 0) newsize = newsize + 8 - (newsize % 8);
     610  if (oldsize % 8 != 0) oldsize = oldsize + 8 - (oldsize % 8);
    611611#endif
    612612 
Note: See TracChangeset for help on using the changeset viewer.