From 0f826924940f7a55257f93fb1d5ab541eac254b3 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Mon, 16 May 2011 13:32:07 +0000 Subject: [PATCH] Replaced german macro parameter name by an english one --- xorriso/sfile.h | 8 ++++---- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/xorriso/sfile.h b/xorriso/sfile.h index a3bbfd0e..74cdb309 100644 --- a/xorriso/sfile.h +++ b/xorriso/sfile.h @@ -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); \ } diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 1f097e8e..4ef7590c 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2011.05.16.132939" +#define Xorriso_timestamP "2011.05.16.133231"