Replaced german macro parameter name by an english one
This commit is contained in:
parent
54a28d1d9e
commit
a41689663d
@ -12,12 +12,12 @@
|
||||
#ifndef Xorriso_pvt_sfile_includeD
|
||||
#define Xorriso_pvt_sfile_includeD yes
|
||||
|
||||
#define TSOB_FELD(typ,anz) (typ *) calloc(1, (anz)*sizeof(typ));
|
||||
#define TSOB_FELD(typ, count) (typ *) calloc(1, (count)*sizeof(typ));
|
||||
#define Smem_malloC malloc
|
||||
#define Smem_freE free
|
||||
|
||||
#define Xorriso_alloc_meM(pt,typ,anz) { \
|
||||
pt= (typ *) calloc(1, (anz)*sizeof(typ)); \
|
||||
#define Xorriso_alloc_meM(pt, typ, count) { \
|
||||
pt= (typ *) calloc(1, (count) * sizeof(typ)); \
|
||||
if(pt == NULL) { \
|
||||
Xorriso_no_malloc_memory(xorriso, NULL, 0); \
|
||||
ret= -1; \
|
||||
@ -26,7 +26,7 @@
|
||||
|
||||
#define Xorriso_free_meM(pt) { \
|
||||
if(pt != NULL) \
|
||||
free(pt); \
|
||||
free((char *) pt); \
|
||||
}
|
||||
|
||||
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2011.05.16.132939"
|
||||
#define Xorriso_timestamP "2011.05.16.133231"
|
||||
|
Loading…
Reference in New Issue
Block a user