A little simplification in the write interface.
[gedcom-parse.git] / gom / note.c
index 0dd24430501862bc01cd71f800156e0f1c7caecf..7f74a3027923815e4d189014f0be54b6ab65d2ef 100644 (file)
@@ -151,8 +151,7 @@ int write_notes(Gedcom_write_hndl hndl)
   struct note* obj;
 
   for (obj = gom_first_note; obj; obj = obj->next) {
-    result |= gedcom_write_record_str(hndl, REC_NOTE, 0,
-                                     obj->xrefstr, obj->text);
+    result |= gedcom_write_record_str(hndl, REC_NOTE, obj->xrefstr, obj->text);
     if (obj->citation)
       result |= write_citations(hndl, REC_NOTE, obj->citation);
     if (obj->ref)