Changeset e180f5 in git


Ignore:
Timestamp:
Aug 31, 2016, 9:55:25 AM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
23ca1f7da923b9cd2662a14a6ae562c743794970
Parents:
c7ae4d6af43fc7bc0e0e28fef427ad316ac3a8ce
Message:
fix typo in xalloc (Jean-Pierre Flori)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • xalloc/omalloc.h

    rc7ae4d re180f5  
    6767
    6868static inline void * omalloc(size_t s)
    69 { if (d!=0) {long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; }
     69{ if (s!=0) {long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; }
    7070  else return NULL;
    7171}
Note: See TracChangeset for help on using the changeset viewer.