Commit 0c2907f92933d6a6838f75628d1696e5d03d1416

Authored by Georg Hopp
1 parent bab8ba34

fix wrongly named macro

Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -100,7 +100,7 @@ void * TR_classClone(void *);
100 100 * implementation but this time with a va_list instead of a
101 101 * variable amount of arguments.
102 102 */
103   -#define TR_newv(class,args) TR_classNewParams(_##class, args)
  103 +#define TR_newv(class,args) TR_classNewv(_##class, args)
104 104
105 105 /**
106 106 * Destroy an instance by first calling its destructor and then
... ...
Please register or login to post a comment