Code updates which makes things compile as C++. Mostly type casts were
[yaz-moved-to-github.git] / src / elementset.c
index 173bc0f..3e453d5 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright (C) 1995-2006, Index Data ApS
+ * Copyright (C) 1995-2007, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: elementset.c,v 1.1 2006-11-14 08:48:26 adam Exp $
+ * $Id: elementset.c,v 1.4 2007-05-06 20:12:20 adam Exp $
  */
 /**
- * \file tpath.c
- * \brief File Path utilities
+ * \file elementset.c
+ * \brief Z39.50 element set utilities
  */
 
 #if HAVE_CONFIG_H
@@ -33,10 +33,12 @@ const char *yaz_get_esn(Z_RecordComposition *comp)
 
 void yaz_set_esn(Z_RecordComposition **comp_p, const char *esn, NMEM nmem)
 {
-    Z_RecordComposition *comp = nmem_malloc(nmem, sizeof(*comp));
+    Z_RecordComposition *comp = (Z_RecordComposition *)
+        nmem_malloc(nmem, sizeof(*comp));
     
     comp->which = Z_RecordComp_simple;
-    comp->u.simple = nmem_malloc(nmem, sizeof(*comp->u.simple));
+    comp->u.simple = (Z_ElementSetNames *)
+        nmem_malloc(nmem, sizeof(*comp->u.simple));
     comp->u.simple->which = Z_ElementSetNames_generic;
     comp->u.simple->u.generic = nmem_strdup(nmem, esn);
     *comp_p = comp;