Replaced german macro parameter name by an english one

This commit is contained in:
Thomas Schmitt 2011-05-16 13:32:07 +00:00
parent 872a23a59f
commit 0f82692494
2 changed files with 5 additions and 5 deletions

View File

@ -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); \
}

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.05.16.132939"
#define Xorriso_timestamP "2011.05.16.133231"